aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk0/hw0/HW1_snell.cpp
blob: 18de077edacd0e1c5291645b61237bb162948273 (plain) (blame)
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
// 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 in degrees: ";
	cin >> firstRI;
	cout << "Input index of refraction of second medium in degrees: ";
	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;
}