-
Notifications
You must be signed in to change notification settings - Fork 21k
Expand file tree
/
Copy pathThinLens.java
More file actions
74 lines (65 loc) · 1.99 KB
/
ThinLens.java
File metadata and controls
74 lines (65 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.thealgorithms.physics;
/**
* Implements the Thin Lens Formula used in ray optics:
*
* <pre>
* 1/f = 1/v + 1/u
* </pre>
*
* where:
* <ul>
* <li>f = focal length</li>
* <li>u = object distance</li>
* <li>v = image distance</li>
* </ul>
*
* Uses the Cartesian sign convention.
*
* @see <a href="https://en.wikipedia.org/wiki/Thin_lens">Thin Lens</a>
*/
public final class ThinLens {
private ThinLens() {
throw new AssertionError("No instances.");
}
/**
* Computes the image distance using the thin lens formula.
*
* @param focalLength focal length of the lens (f)
* @param objectDistance object distance (u)
* @return image distance (v)
* @throws IllegalArgumentException if focal length or object distance is zero
*/
public static double imageDistance(double focalLength, double objectDistance) {
if (focalLength == 0 || objectDistance == 0) {
throw new IllegalArgumentException("Focal length and object distance must be non-zero.");
}
return 1.0 / ((1.0 / focalLength) - (1.0 / objectDistance));
}
/**
* Computes magnification of the image.
*
* <pre>
* m = v / u
* </pre>
*
* @param imageDistance image distance (v)
* @param objectDistance object distance (u)
* @return magnification
* @throws IllegalArgumentException if object distance is zero
*/
public static double magnification(double imageDistance, double objectDistance) {
if (objectDistance == 0) {
throw new IllegalArgumentException("Object distance must be non-zero.");
}
return imageDistance / objectDistance;
}
/**
* Determines whether the image formed is real or virtual.
*
* @param imageDistance image distance (v)
* @return {@code true} if image is real, {@code false} if virtual
*/
public static boolean isRealImage(double imageDistance) {
return imageDistance > 0;
}
}