-
-
Notifications
You must be signed in to change notification settings - Fork 46.8k
Add algorithm for Casimir Effect #7141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
fda716b
Add algorithm for Casimir Effect
ZeroDayOwl 5bf3af7
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] cdb1fc9
Fix the line length
ZeroDayOwl f7fa4d9
Merge branch 'master' of github.com:ZeroDayOwl/Python into CasimirEffect
ZeroDayOwl 109a3ba
Fix the line length
ZeroDayOwl bb3810d
Merge branch 'CasimirEffect' of github.com:ZeroDayOwl/Python into Cas…
ZeroDayOwl 7f26716
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] ae97d84
Merge branch 'TheAlgorithms:master' into CasimirEffect
ZeroDayOwl 5ad33e5
Import math module and use Pi
ZeroDayOwl b0d800a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 2f7663b
Update doctest results
ZeroDayOwl 9df4f71
from math import pi
cclauss File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
""" | ||
Title : Finding the value of magnitude of either the Casimir force, the surface area | ||
of one of the plates or distance between the plates provided that the other | ||
two parameters are given. | ||
|
||
Description : In quantum field theory, the Casimir effect is a physical force | ||
acting on the macroscopic boundaries of a confined space which arises from the | ||
quantum fluctuations of the field. It is a physical force exerted between separate | ||
objects, which is due to neither charge, gravity, nor the exchange of particles, | ||
but instead is due to resonance of all-pervasive energy fields in the intervening | ||
space between the objects. Since the strength of the force falls off rapidly with | ||
distance it is only measurable when the distance between the objects is extremely | ||
small. On a submicron scale, this force becomes so strong that it becomes the | ||
dominant force between uncharged conductors. | ||
|
||
Dutch physicist Hendrik B. G. Casimir first proposed the existence of the force, | ||
and he formulated an experiment to detect it in 1948 while participating in research | ||
at Philips Research Labs. The classic form of his experiment used a pair of uncharged | ||
parallel metal plates in a vacuum, and successfully demonstrated the force to within | ||
15% of the value he had predicted according to his theory. | ||
|
||
The Casimir force F for idealized, perfectly conducting plates of surface area | ||
A square meter and placed at a distance of a meter apart with vacuum between | ||
them is expressed as - | ||
|
||
F = - ((Reduced Planck Constant ℏ) * c * Pi^2 * A) / (240 * a^4) | ||
|
||
Here, the negative sign indicates the force is attractive in nature. For the ease | ||
of calculation, only the magnitude of the force is considered. | ||
|
||
Source : | ||
- https://en.wikipedia.org/wiki/Casimir_effect | ||
- https://www.cs.mcgill.ca/~rwest/wikispeedia/wpcd/wp/c/Casimir_effect.htm | ||
- Casimir, H. B. ; Polder, D. (1948) "The Influence of Retardation on the | ||
London-van der Waals Forces", Physical Review, vol. 73, Issue 4, pp. 360-372 | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
from math import pi | ||
|
||
# Define the Reduced Planck Constant ℏ (H bar), speed of light C, value of | ||
# Pi and the function | ||
REDUCED_PLANCK_CONSTANT = 1.054571817e-34 # unit of ℏ : J * s | ||
|
||
SPEED_OF_LIGHT = 3e8 # unit of c : m * s^-1 | ||
|
||
|
||
def casimir_force(force: float, area: float, distance: float) -> dict[str, float]: | ||
|
||
""" | ||
Input Parameters | ||
---------------- | ||
force -> Casimir Force : magnitude in Newtons | ||
|
||
area -> Surface area of each plate : magnitude in square meters | ||
|
||
distance -> Distance between two plates : distance in Meters | ||
|
||
Returns | ||
------- | ||
result : dict name, value pair of the parameter having Zero as it's value | ||
|
||
Returns the value of one of the parameters specified as 0, provided the values of | ||
other parameters are given. | ||
>>> casimir_force(force = 0, area = 4, distance = 0.03) | ||
{'force': 6.4248189174864216e-21} | ||
|
||
>>> casimir_force(force = 2635e-13, area = 0.0023, distance = 0) | ||
{'distance': 1.0323056015031114e-05} | ||
|
||
>>> casimir_force(force = 2737e-21, area = 0, distance = 0.0023746) | ||
{'area': 0.06688838837354052} | ||
|
||
>>> casimir_force(force = 3457e-12, area = 0, distance = 0) | ||
Traceback (most recent call last): | ||
... | ||
ValueError: One and only one argument must be 0 | ||
|
||
>>> casimir_force(force = 3457e-12, area = 0, distance = -0.00344) | ||
Traceback (most recent call last): | ||
... | ||
ValueError: Distance can not be negative | ||
|
||
>>> casimir_force(force = -912e-12, area = 0, distance = 0.09374) | ||
Traceback (most recent call last): | ||
... | ||
ValueError: Magnitude of force can not be negative | ||
""" | ||
|
||
if (force, area, distance).count(0) != 1: | ||
raise ValueError("One and only one argument must be 0") | ||
if force < 0: | ||
raise ValueError("Magnitude of force can not be negative") | ||
if distance < 0: | ||
raise ValueError("Distance can not be negative") | ||
if area < 0: | ||
raise ValueError("Area can not be negative") | ||
if force == 0: | ||
force = (REDUCED_PLANCK_CONSTANT * SPEED_OF_LIGHT * pi**2 * area) / ( | ||
240 * (distance) ** 4 | ||
) | ||
return {"force": force} | ||
elif area == 0: | ||
area = (240 * force * (distance) ** 4) / ( | ||
REDUCED_PLANCK_CONSTANT * SPEED_OF_LIGHT * pi**2 | ||
) | ||
return {"area": area} | ||
elif distance == 0: | ||
distance = ( | ||
(REDUCED_PLANCK_CONSTANT * SPEED_OF_LIGHT * pi**2 * area) / (240 * force) | ||
) ** (1 / 4) | ||
return {"distance": distance} | ||
raise ValueError("One and only one argument must be 0") | ||
|
||
|
||
# Run doctest | ||
if __name__ == "__main__": | ||
import doctest | ||
|
||
doctest.testmod() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.