-
-
Notifications
You must be signed in to change notification settings - Fork 47.1k
Added Coulomb_Law #8714
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
Added Coulomb_Law #8714
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
770e2f4
Create coulomb_law.py
gudlu1925 8466f25
Update coulomb_law.py
gudlu1925 07f24ca
Update coulomb_law.py
gudlu1925 112b1f9
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] fdd4eff
Update and rename coulomb_law.py to coulombs_law.py
gudlu1925 43bd954
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 2387620
Update coulombs_law.py
gudlu1925 d7d6517
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 64fceb5
Update coulombs_law.py
gudlu1925 c78a384
Update coulombs_law.py
gudlu1925 ce65ffb
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 1a32040
Update coulombs_law.py
gudlu1925 ed46580
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] a8bd7cc
Update coulombs_law.py
tianyizheng02 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
Update coulomb_law.py
- Loading branch information
commit 8466f25ea6cc7aa7edb9070d4402b5ac6cc67b8b
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 | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -7,7 +7,8 @@ | |||||||||
|
||||||||||
Charles-Augustin de Coulomb, a French physicist in 1784, measured the force between two point charges and he came up with the theory that the force is inversely proportional to the square of the distance between the charges. He also found that this force is directly proportional to the product of charges (magnitudes only). | ||||||||||
|
||||||||||
We can show it with the following explanation. Let’s say that there are two charges q1 and q2. The distance between the charges is ‘r’, and the force of attraction/repulsion between them is ‘F’. Then | ||||||||||
We can show it with the following explanation. Let’s say that there are two charges q1 and q2. | ||||||||||
The distance between the charges is ‘r’, and the force of attraction/repulsion between them is ‘F’. Then | ||||||||||
|
||||||||||
F ∝ q1q2 | ||||||||||
|
||||||||||
|
@@ -17,12 +18,14 @@ | |||||||||
|
||||||||||
where k is proportionality constant and equals to 1/4πε0. | ||||||||||
|
||||||||||
Here, ε0 is the epsilon naught and it signifies permittivity of a vacuum. The value of k comes 9 × 10^9 Nm^2/ C^2 when we take the S.I unit of value of ε0 is 8.854 × 10^-12 C^2 N^-1 m^-2. | ||||||||||
Here, ε0 is the epsilon naught and it signifies permittivity of a vacuum. The value of k comes 9 × 10^9 Nm^2/ C^2 | ||||||||||
when we take the S.I unit of value of ε0 is 8.854 × 10^-12 C^2 N^-1 m^-2. | ||||||||||
|
||||||||||
The unit of Electrostatic force is newton.Mathematically it is written as: | ||||||||||
F = (k*q1*q2)/(r**2) | ||||||||||
|
||||||||||
Where, F is the Electrostatic force,q1 q2 are the intensity of two charges respecticvely ,r is the radius and k is coulombs constant and its value is 9×10^9 N⋅m^2⋅C^−2 . | ||||||||||
Where, F is the Electrostatic force,q1 q2 are the intensity of two charges respecticvely , | ||||||||||
r is the radius and k is coulombs constant and its value is 9×10^9 N⋅m^2⋅C^−2 . | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
||||||||||
https://www.toppr.com/guides/physics/electric-charges-and-fields/coulombs-law/ | ||||||||||
""" | ||||||||||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider changing the file name from
coulomb_law.py
tocoulombs_law.py
, since the name is "Coulomb's Law"