photosurfactant 1.0.0__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.
- photosurfactant/__init__.py +1 -0
- photosurfactant/fourier.py +47 -0
- photosurfactant/intensity_functions.py +32 -0
- photosurfactant/parameters.py +219 -0
- photosurfactant/py.typed +0 -0
- photosurfactant/scripts/__init__.py +0 -0
- photosurfactant/scripts/plot_all.sh +19 -0
- photosurfactant/scripts/plot_error.py +75 -0
- photosurfactant/scripts/plot_first_order.py +506 -0
- photosurfactant/scripts/plot_leading_order.py +288 -0
- photosurfactant/scripts/plot_spectrum.py +146 -0
- photosurfactant/scripts/plot_sweep.py +234 -0
- photosurfactant/semi_analytic/__init__.py +3 -0
- photosurfactant/semi_analytic/first_order.py +540 -0
- photosurfactant/semi_analytic/leading_order.py +237 -0
- photosurfactant/semi_analytic/limits.py +240 -0
- photosurfactant/semi_analytic/utils.py +43 -0
- photosurfactant/utils/__init__.py +0 -0
- photosurfactant/utils/arg_parser.py +162 -0
- photosurfactant/utils/func_parser.py +10 -0
- photosurfactant-1.0.0.dist-info/METADATA +25 -0
- photosurfactant-1.0.0.dist-info/RECORD +24 -0
- photosurfactant-1.0.0.dist-info/WHEEL +4 -0
- photosurfactant-1.0.0.dist-info/entry_points.txt +6 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: photosurfactant
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Models of chromocapillary flows for photo-actuated liquid mixing and sculpting.
|
|
5
|
+
Author-email: Niall Oswald <niall.oswald20@imperial.ac.uk>
|
|
6
|
+
Requires-Python: >=3.12
|
|
7
|
+
Requires-Dist: alive-progress>=3.3.0
|
|
8
|
+
Requires-Dist: matplotlib>=3.10.7
|
|
9
|
+
Requires-Dist: numpy>=2.3.4
|
|
10
|
+
Requires-Dist: scipy>=1.16.2
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# Photosurfactant
|
|
14
|
+
|
|
15
|
+
[](https://zenodo.org/badge/latestdoi/734330906)
|
|
16
|
+

|
|
17
|
+

|
|
18
|
+
|
|
19
|
+
Numerical solvers for liquid mixing and sculpting using light-actuated photosurfactants.
|
|
20
|
+
|
|
21
|
+
# Publications
|
|
22
|
+
|
|
23
|
+
This package has been used in the following publications:
|
|
24
|
+
|
|
25
|
+
- (Submitted) M. D. Mayer, N. J. Oswald, D. T. Papageorgiou, 2026. Liquid mixing and sculpting using light-actuated photosurfactants.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
photosurfactant/__init__.py,sha256=WdbU7SFiY4huX6fuI8VAhltd77l4NDmTusIcTsct_KQ,49
|
|
2
|
+
photosurfactant/fourier.py,sha256=guhTgjiZBJLn-EbWNr8xQR6TwgNRjXNMhTrzsNoWPco,1743
|
|
3
|
+
photosurfactant/intensity_functions.py,sha256=ise79jf4l7v44oWt229T3OHEW0OJrhQc_1MpxqFuab0,754
|
|
4
|
+
photosurfactant/parameters.py,sha256=O6QFqklOevaLxC44vAM-rafw1UPM3QHg_LYuPvH51ZE,6294
|
|
5
|
+
photosurfactant/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
photosurfactant/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
photosurfactant/scripts/plot_all.sh,sha256=sVQVieSZw-XcBGxqkWZnVhCmjHx1_UqjnzOdFJwMlL8,1273
|
|
8
|
+
photosurfactant/scripts/plot_error.py,sha256=42huvsrLMUA5O_EWfQSWLtYAXqrzVNMAsbxaU_Gg9y0,2480
|
|
9
|
+
photosurfactant/scripts/plot_first_order.py,sha256=eqrgqgezfuN2x353XeO0E7_T1bubFAOzg1GkEFLbWBI,17680
|
|
10
|
+
photosurfactant/scripts/plot_leading_order.py,sha256=f-d7p8iAZGJnzvIJYQAOBd72kO_A82X2qF5q8L6HnFE,8587
|
|
11
|
+
photosurfactant/scripts/plot_spectrum.py,sha256=vD2bvUgM2sisLexs-Z-LQhqMpnWj9OIupSzrYusd7lk,4049
|
|
12
|
+
photosurfactant/scripts/plot_sweep.py,sha256=QF28Vru6JDDjldUkXUvfE-yWKHrdHbm9U1OZrbailtw,6486
|
|
13
|
+
photosurfactant/semi_analytic/__init__.py,sha256=x-DK9bWHOnVW6og4dY-Y8P1QOVvviQq8h63iMlb0XcY,154
|
|
14
|
+
photosurfactant/semi_analytic/first_order.py,sha256=0RZrfcqml9aYtutS39VIoPvUtcsX4CRMc3D4zF19h8U,18914
|
|
15
|
+
photosurfactant/semi_analytic/leading_order.py,sha256=9MtMfKDioWS4WoRXq14_HIlxdsxVYxsWnN-tOXYj_0c,8107
|
|
16
|
+
photosurfactant/semi_analytic/limits.py,sha256=tiZwQKTv4z693MNCnkFTQUrlFW3KMjNPDaIRbR_etdE,7825
|
|
17
|
+
photosurfactant/semi_analytic/utils.py,sha256=S8Y4hNVySsOne1f6trk3bmDcXzbmKwYJaQF8X2yetQE,1067
|
|
18
|
+
photosurfactant/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
photosurfactant/utils/arg_parser.py,sha256=DlPVuCgoF7JtFSR6cFCN_iiRsX0zOLVJDITbz9va4d0,4629
|
|
20
|
+
photosurfactant/utils/func_parser.py,sha256=_qLPPR1mx9aI8ncn6dIJ2qQS5LEscCkGkM8_T0ai2yc,299
|
|
21
|
+
photosurfactant-1.0.0.dist-info/METADATA,sha256=ssw-7MuQ_f5nmHTM0pXhriolWkrZkEvLkpPfa57m7v4,1019
|
|
22
|
+
photosurfactant-1.0.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
23
|
+
photosurfactant-1.0.0.dist-info/entry_points.txt,sha256=6OzlBbiEV0c5-CL7ljdrehHtV_-ig2Z1B-V1K6VQ4sE,358
|
|
24
|
+
photosurfactant-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
plot_error = photosurfactant.scripts.plot_error:plot_error
|
|
3
|
+
plot_first_order = photosurfactant.scripts.plot_first_order:plot_first_order
|
|
4
|
+
plot_leading_order = photosurfactant.scripts.plot_leading_order:plot_leading_order
|
|
5
|
+
plot_spectrum = photosurfactant.scripts.plot_spectrum:plot_spectrum
|
|
6
|
+
plot_sweep = photosurfactant.scripts.plot_sweep:main
|