TDCRPy 2.0.0__py3-none-any.whl → 2.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of TDCRPy might be problematic. Click here for more details.
- {TDCRPy-2.0.0.dist-info → TDCRPy-2.0.1.dist-info}/METADATA +1 -1
- {TDCRPy-2.0.0.dist-info → TDCRPy-2.0.1.dist-info}/RECORD +6 -6
- tdcrpy/TDCRPy.py +5 -3
- {TDCRPy-2.0.0.dist-info → TDCRPy-2.0.1.dist-info}/LICENCE.md +0 -0
- {TDCRPy-2.0.0.dist-info → TDCRPy-2.0.1.dist-info}/WHEEL +0 -0
- {TDCRPy-2.0.0.dist-info → TDCRPy-2.0.1.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tdcrpy/TDCRPy.py,sha256=
|
|
1
|
+
tdcrpy/TDCRPy.py,sha256=Q6ksEJQvjNgbcWPiWFAcT0QDBCN2x5lHs_W4Leh7KO0,61092
|
|
2
2
|
tdcrpy/TDCRPy1.py,sha256=QTBZh5B5JWnGB0BQfD-cFmwA9W080OD4sG-aj50-ejo,38106
|
|
3
3
|
tdcrpy/TDCR_model_lib.py,sha256=I8AOboq9sgCnkMpu871RTABgxvUg-OwBNzL20EARJpo,124068
|
|
4
4
|
tdcrpy/TDCRoptimize.py,sha256=c2XIGveeLdVYYek4Rg6dygMvVA2xIrIkMb3L-_jUucM,6496
|
|
@@ -1081,8 +1081,8 @@ tdcrpy/docs/_build/html/source/modules.html,sha256=Jf-qxVBId0UgpwyvYuyjtMNG-ezPO
|
|
|
1081
1081
|
tdcrpy/docs/_build/html/source/tdcrpy.html,sha256=-38lHMNFB22p1tWJEeN3yDqfDiCYE304vxDamO1-iRc,3779
|
|
1082
1082
|
tdcrpy/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1083
1083
|
tdcrpy/test/test_tdcrpy.py,sha256=JINqSEMFoNpptE4f3h6ZzTYW1rBx90KkaoQzltSg-No,4692
|
|
1084
|
-
TDCRPy-2.0.
|
|
1085
|
-
TDCRPy-2.0.
|
|
1086
|
-
TDCRPy-2.0.
|
|
1087
|
-
TDCRPy-2.0.
|
|
1088
|
-
TDCRPy-2.0.
|
|
1084
|
+
TDCRPy-2.0.1.dist-info/LICENCE.md,sha256=ZTpWyGU3qv_iwEpgvCijoCuCYpOPpyzJCgOk46WpUKU,1066
|
|
1085
|
+
TDCRPy-2.0.1.dist-info/METADATA,sha256=1uc6qT_bX3JOrr_E6VUgM-vv3ICK2kAFqyThmJKbSNc,15831
|
|
1086
|
+
TDCRPy-2.0.1.dist-info/WHEEL,sha256=nCVcAvsfA9TDtwGwhYaRrlPhTLV9m-Ga6mdyDtuwK18,91
|
|
1087
|
+
TDCRPy-2.0.1.dist-info/top_level.txt,sha256=f4vzFFcKSEnonAACs0ZXuRczmroLLqtPTqXFymU_VU0,14
|
|
1088
|
+
TDCRPy-2.0.1.dist-info/RECORD,,
|
tdcrpy/TDCRPy.py
CHANGED
|
@@ -1096,6 +1096,8 @@ def eff(TD, Rad, pmf_1, kB, V, N=10000, L=1, maxiter=20, xatol=1e-7, disp=False)
|
|
|
1096
1096
|
else:
|
|
1097
1097
|
symm = True
|
|
1098
1098
|
|
|
1099
|
+
TDCRPy(L, Rad, pmf_1, N, kB, V, record = True)
|
|
1100
|
+
|
|
1099
1101
|
if symm: r=opt.minimize_scalar(objectFct, args=(TD, Rad, pmf_1, N, kB, V), method='bounded', bounds = (0.1, 5), options={'disp': disp, 'maxiter':maxiter})
|
|
1100
1102
|
else: r=opt.minimize_scalar(objectFct, args=(TD[0], Rad, pmf_1, N, kB, V), method='bounded', bounds = (0.1, 5), options={'disp': disp, 'maxiter':maxiter})
|
|
1101
1103
|
L0=r.x
|
|
@@ -1128,10 +1130,10 @@ def eff(TD, Rad, pmf_1, kB, V, N=10000, L=1, maxiter=20, xatol=1e-7, disp=False)
|
|
|
1128
1130
|
|
|
1129
1131
|
|
|
1130
1132
|
# # L = 1
|
|
1131
|
-
#
|
|
1132
|
-
# # TD = 0.977667386529166
|
|
1133
|
+
# L = (1.1, 1.05, 1.15)
|
|
1134
|
+
# # # TD = 0.977667386529166
|
|
1133
1135
|
# TD = (0.977667386529166, 0.992232838598821, 0.992343419459002, 0.99275350064608)
|
|
1134
|
-
# # TD = (0.977667386529166, 0.995232838598821, 0.990343419459002, 0.99275350064608)
|
|
1136
|
+
# # # TD = (0.977667386529166, 0.995232838598821, 0.990343419459002, 0.99275350064608)
|
|
1135
1137
|
# Rad="Co-60"
|
|
1136
1138
|
# pmf_1="1"
|
|
1137
1139
|
# N = 1000
|
|
File without changes
|
|
File without changes
|
|
File without changes
|