Skip to content

Commit 8015fbd

Browse files
committed
nothing has changed.
1 parent ebd4c90 commit 8015fbd

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

example/Incandescent_Opt.ipynb

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,24 @@
1010
"of the transfer matrix equations\" by J. F. Varner, D. Wert, A. Matari, R. Nofal, and J. J. Foley IV."
1111
]
1212
},
13+
{
14+
"cell_type": "code",
15+
"execution_count": 11,
16+
"metadata": {},
17+
"outputs": [
18+
{
19+
"name": "stdout",
20+
"output_type": "stream",
21+
"text": [
22+
"0.0\n"
23+
]
24+
}
25+
],
26+
"source": [
27+
"import numpy as np\n",
28+
"print(np.exp(-2000))"
29+
]
30+
},
1331
{
1432
"cell_type": "code",
1533
"execution_count": null,
@@ -155,7 +173,7 @@
155173
"name": "python",
156174
"nbconvert_exporter": "python",
157175
"pygments_lexer": "ipython3",
158-
"version": "3.7.3"
176+
"version": "3.7.4"
159177
}
160178
},
161179
"nbformat": 4,

example/Validate_Cooling.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@
232232
"name": "python",
233233
"nbconvert_exporter": "python",
234234
"pygments_lexer": "ipython3",
235-
"version": "3.6.8"
235+
"version": "3.7.4"
236236
}
237237
},
238238
"nbformat": 4,

wptherml/tmm.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
def BuildP(phil):
1616
P = np.zeros((2,2),dtype=complex)
1717
ci = 0+1j
18+
1819
a = -1*ci*phil
1920
b = ci*phil
21+
2022
P[0][1] = 0+0j
2123
P[1][0] = 0+0j
2224
P[0][0] = np.exp(a)

0 commit comments

Comments
 (0)