TDCRPy 0.0.73__py3-none-any.whl → 0.0.74__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: TDCRPy
3
- Version: 0.0.73
3
+ Version: 0.0.74
4
4
  Summary: TDCR model
5
5
  Home-page: https://github.com/RomainCoulon/TDCRPy
6
6
  Author: RomainCoulon (Romain Coulon)
@@ -2,7 +2,7 @@ tdcrpy/Activity_TDCR.py,sha256=wcllEOJbeEOexAYzcFGQx2luIBhxSU3LtpEalRmNziw,11530
2
2
  tdcrpy/EfficiencyProfils.py,sha256=-ZUPva1dU7lMRcKbQAewX9QyiTDwCiNQDoaQiw7dOI4,4829
3
3
  tdcrpy/TDCRPy.py,sha256=lZZo-m3LDkYiFcL3up_p8MxX7lAMVHZmJ1LcvGmW5QE,29272
4
4
  tdcrpy/TDCR_model_lib.py,sha256=mvEyp7AuhqLp17YDm-gYi7Y-IbwxeY7iWEZY7Bqo0mQ,55679
5
- tdcrpy/TDCRoptimize.py,sha256=e4m_N_ao-RJ7lVJ4O3JiU5eL6zsn25kAd2Z-xu5-UOU,2976
5
+ tdcrpy/TDCRoptimize.py,sha256=bP52XxQE4VCauDN0gbs0rvkRXNdAp-acbRG0qMwOB4U,2977
6
6
  tdcrpy/__init__.py,sha256=pxZ5gMTFSEzeGQLzeRjy-Imu7bZIfhg9eqloOq5FTM4,130
7
7
  tdcrpy/config.toml,sha256=Sbu_85L9REvYT9s4uFiqD8yZ8ju6Qyca91RiQOnytA0,1038
8
8
  tdcrpy/decay.py,sha256=Lnq-kj-6Xs2Rw9w3Y3LlK_ffFip1QzemHdesiug0Wko,817
@@ -30,8 +30,8 @@ tdcrpy/docs/_build/html/source/modules.html,sha256=F8HKsi_oxQqJL8zvOsu5o4Hjj9sP0
30
30
  tdcrpy/docs/_build/html/source/tdcrpy.html,sha256=U6cUhBwu0006Cut6JTvsG833-Vdkg-wetXL4GqWUU5M,80675
31
31
  tdcrpy/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
32
  tdcrpy/test/test_tdcrpy.py,sha256=mN_Tf6EfM3aAvLnw0TQxkhpjnov_-70yTycOKvCZl2w,3442
33
- TDCRPy-0.0.73.dist-info/LICENCE.md,sha256=fuYzrZRiOAjJBzA1tsGQwojCgGROArb2Ec48GDTjlWM,1086
34
- TDCRPy-0.0.73.dist-info/METADATA,sha256=7z8JOOReSQJn42nr6GHFiIHxJD3yDSDPJnWGSXzfp9c,2415
35
- TDCRPy-0.0.73.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
36
- TDCRPy-0.0.73.dist-info/top_level.txt,sha256=VgPJa9YJ7fi8wrr9qDJPLhu3tK1BcFRIP6Ib4r3BEfs,7
37
- TDCRPy-0.0.73.dist-info/RECORD,,
33
+ TDCRPy-0.0.74.dist-info/LICENCE.md,sha256=fuYzrZRiOAjJBzA1tsGQwojCgGROArb2Ec48GDTjlWM,1086
34
+ TDCRPy-0.0.74.dist-info/METADATA,sha256=SCu4GkY8vhzQdKG_Iqm13ybBN48NX5FqIQ_Ruw-drSw,2415
35
+ TDCRPy-0.0.74.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
36
+ TDCRPy-0.0.74.dist-info/top_level.txt,sha256=VgPJa9YJ7fi8wrr9qDJPLhu3tK1BcFRIP6Ib4r3BEfs,7
37
+ TDCRPy-0.0.74.dist-info/RECORD,,
tdcrpy/TDCRoptimize.py CHANGED
@@ -59,7 +59,7 @@ def eff(TD, TAB, TBC, TAC, Rad, pmf_1, kB, V, mode2, N=1000, L=1):
59
59
 
60
60
  """
61
61
  # Estimation of the free parameter that minimize the residuals
62
- r=opt.minimize_scalar(td.TDCRPy, args=(TD, TAB, TBC, TAC, Rad, pmf_1, N, kB, V, "res", "sym"), method='bounded', bounds=[0, 1000],options={'xatol': 1e-4, 'disp': True, 'maxiter':20})
62
+ r=opt.minimize_scalar(td.TDCRPy, args=(TD, TAB, TBC, TAC, Rad, pmf_1, N, kB, V, "res", "sym"), method='bounded', bounds=[0, 10000],options={'xatol': 1e-4, 'disp': True, 'maxiter':20})
63
63
  L=r.x
64
64
  print(r)
65
65