Skip to content

Commit

Permalink
tutoria lcorrections
Browse files Browse the repository at this point in the history
  • Loading branch information
shirubana committed Sep 16, 2024
1 parent 14476c1 commit cba8e3d
Showing 1 changed file with 19 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"metadata": {},
"source": [
"# Tools - Edge Seal Oxygen Ingress Calculator tool\n",
"\n",
"### Calculation of oxygen ingress profile through an edge seal and into the encapsulant.\n",
"Calculation of oxygen ingress profile through an edge seal and into the encapsulant.\n",
"\n",
"**Requirements:**\n",
"- Local weather data file or site longitude and latittude.\n",
Expand All @@ -31,7 +30,7 @@
"outputs": [],
"source": [
"# if running on google colab, uncomment the next line and execute this cell to install the dependencies and prevent \"ModuleNotFoundError\" in later cells:\n",
"# !pip install pvdeg==0.3.3"
"!pip install pvdeg==0.3.3"
]
},
{
Expand All @@ -51,6 +50,20 @@
"import json"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# This information helps with debugging and getting support :)\n",
"import sys, platform\n",
"print(\"Working on a \", platform.system(), platform.release())\n",
"print(\"Python version \", sys.version)\n",
"print(\"Pandas version \", pd.__version__)\n",
"print(\"pvdeg version \", pvdeg.__version__)"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -301,7 +314,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -315,9 +328,9 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.18"
"version": "3.11.7"
}
},
"nbformat": 4,
"nbformat_minor": 2
"nbformat_minor": 4
}

0 comments on commit cba8e3d

Please sign in to comment.