aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk0/hw0/strap012_HW0.cpp
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2022-05-24 11:18:46 -0500
committerMatt Strapp <matt@mattstrapp.net>2022-05-24 11:19:55 -0500
commit7a73162607544204032aa66cce755daf21edebda (patch)
tree58578e01f15f34a855d99c32898db9d7a1603e67 /ee1301/wk0/hw0/strap012_HW0.cpp
parentdo some stuff (diff)
downloadhomework-7a73162607544204032aa66cce755daf21edebda.tar
homework-7a73162607544204032aa66cce755daf21edebda.tar.gz
homework-7a73162607544204032aa66cce755daf21edebda.tar.bz2
homework-7a73162607544204032aa66cce755daf21edebda.tar.lz
homework-7a73162607544204032aa66cce755daf21edebda.tar.xz
homework-7a73162607544204032aa66cce755daf21edebda.tar.zst
homework-7a73162607544204032aa66cce755daf21edebda.zip
Graduate
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'ee1301/wk0/hw0/strap012_HW0.cpp')
-rw-r--r--ee1301/wk0/hw0/strap012_HW0.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/ee1301/wk0/hw0/strap012_HW0.cpp b/ee1301/wk0/hw0/strap012_HW0.cpp
new file mode 100644
index 0000000..b8ca0b9
--- /dev/null
+++ b/ee1301/wk0/hw0/strap012_HW0.cpp
@@ -0,0 +1,27 @@
+// EE 1301
+// HW 0
+// Matthew Strapp
+// strap012
+// 0.3490658503988659
+
+#include <iostream>
+#include <cmath>
+
+using namespace std;
+
+int main()
+{
+ double inAngle, firstRI, secondRI;
+ cout << "Input incident angle in degrees: ";
+ cin >> inAngle;
+ cout << "Input index of refraction of first medium: ";
+ cin >> firstRI;
+ cout << "Input index of refraction of second medium: ";
+ cin >> secondRI;
+
+ inAngle = inAngle *M_PI / 180.0; // convert to radians
+ double outAngle = 180/M_PI * asin(firstRI/secondRI * sin(inAngle)); //snell's law
+ cout << "Refracted angle in degrees: " << outAngle <<endl;
+
+ return 0;
+}