mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-12-18 01:00:15 +00:00
Compare commits
6 Commits
50a2ca4ddb
...
2f610f86e0
Author | SHA1 | Date | |
---|---|---|---|
|
2f610f86e0 | ||
|
e3bd7721c8 | ||
|
e3f3d668be | ||
|
3e9ca92ca9 | ||
|
7fa920adfc | ||
|
e4e9358a35 |
|
@ -16,7 +16,7 @@ repos:
|
|||
- id: auto-walrus
|
||||
|
||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||
rev: v0.7.1
|
||||
rev: v0.7.3
|
||||
hooks:
|
||||
- id: ruff
|
||||
- id: ruff-format
|
||||
|
@ -29,7 +29,7 @@ repos:
|
|||
- tomli
|
||||
|
||||
- repo: https://github.com/tox-dev/pyproject-fmt
|
||||
rev: "v2.4.3"
|
||||
rev: "v2.5.0"
|
||||
hooks:
|
||||
- id: pyproject-fmt
|
||||
|
||||
|
@ -42,7 +42,7 @@ repos:
|
|||
pass_filenames: false
|
||||
|
||||
- repo: https://github.com/abravalheri/validate-pyproject
|
||||
rev: v0.22
|
||||
rev: v0.23
|
||||
hooks:
|
||||
- id: validate-pyproject
|
||||
|
||||
|
|
|
@ -172,7 +172,7 @@ def solved(values):
|
|||
|
||||
def from_file(filename, sep="\n"):
|
||||
"Parse a file into a list of strings, separated by sep."
|
||||
return open(filename).read().strip().split(sep) # noqa: SIM115
|
||||
return open(filename).read().strip().split(sep)
|
||||
|
||||
|
||||
def random_puzzle(assignments=17):
|
||||
|
|
46
physics/de_broglie
Normal file
46
physics/de_broglie
Normal file
|
@ -0,0 +1,46 @@
|
|||
PLANCK_CONSTANT_JS = 6.62607015e-34 # Planck's constant in Joule-seconds
|
||||
PLANCK_CONSTANT_EVS = 4.135667696e-15 # Planck's constant in eV-seconds
|
||||
|
||||
def de_broglie_wavelength(momentum: float, in_ev: bool = False) -> str:
|
||||
"""
|
||||
Calculates the de Broglie wavelength of a particle using the given momentum.
|
||||
|
||||
Parameters:
|
||||
momentum (float): Momentum of the particle.
|
||||
in_ev (bool, optional): True if momentum is in eV·s.
|
||||
If False, momentum is in kg·m/s.
|
||||
|
||||
Returns:
|
||||
str: The calculated de Broglie wavelength of the particle in meters,
|
||||
formatted in scientific notation.
|
||||
|
||||
Raises:
|
||||
ValueError: If the momentum is zero or negative.
|
||||
|
||||
Usage example:
|
||||
>>> de_broglie_wavelength(1e-24)
|
||||
'6.62607015e-10'
|
||||
>>> de_broglie_wavelength(1e-24, True)
|
||||
'4.13566770e+09'
|
||||
>>> de_broglie_wavelength(0)
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
ValueError: Momentum can't be zero or negative.
|
||||
>>> de_broglie_wavelength(-1e-24)
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
ValueError: Momentum can't be zero or negative.
|
||||
>>> de_broglie_wavelength(5e-20)
|
||||
'1.32521403e-14'
|
||||
"""
|
||||
|
||||
if momentum <= 0:
|
||||
raise ValueError("Momentum can't be zero or negative.")
|
||||
|
||||
|
||||
wavelength = PLANCK_CONSTANT_EVS / momentum if in_ev else PLANCK_CONSTANT_JS / momentum
|
||||
return f"{wavelength:.8e}"
|
||||
|
||||
if __name__ == "__main__":
|
||||
import doctest
|
||||
doctest.testmod()
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3
|
||||
#!python
|
||||
import os
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue
Block a user