summaryrefslogtreecommitdiff
path: root/A_Textbook_Of_Engineering_Physics_by_M_N_Avadhanulu/8-Polarization.ipynb
diff options
context:
space:
mode:
authorPrashant S2020-04-14 10:25:32 +0530
committerGitHub2020-04-14 10:25:32 +0530
commit06b09e7d29d252fb2f5a056eeb8bd1264ff6a333 (patch)
tree2b1df110e24ff0174830d7f825f43ff1c134d1af /A_Textbook_Of_Engineering_Physics_by_M_N_Avadhanulu/8-Polarization.ipynb
parentabb52650288b08a680335531742a7126ad0fb846 (diff)
parent476705d693c7122d34f9b049fa79b935405c9b49 (diff)
downloadall-scilab-tbc-books-ipynb-master.tar.gz
all-scilab-tbc-books-ipynb-master.tar.bz2
all-scilab-tbc-books-ipynb-master.zip
Merge pull request #1 from prashantsinalkar/masterHEADmaster
Initial commit
Diffstat (limited to 'A_Textbook_Of_Engineering_Physics_by_M_N_Avadhanulu/8-Polarization.ipynb')
-rw-r--r--A_Textbook_Of_Engineering_Physics_by_M_N_Avadhanulu/8-Polarization.ipynb94
1 files changed, 94 insertions, 0 deletions
diff --git a/A_Textbook_Of_Engineering_Physics_by_M_N_Avadhanulu/8-Polarization.ipynb b/A_Textbook_Of_Engineering_Physics_by_M_N_Avadhanulu/8-Polarization.ipynb
new file mode 100644
index 0000000..f777a3b
--- /dev/null
+++ b/A_Textbook_Of_Engineering_Physics_by_M_N_Avadhanulu/8-Polarization.ipynb
@@ -0,0 +1,94 @@
+{
+"cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Chapter 8: Polarization"
+ ]
+ },
+{
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Example 8.2: Polarizer.sce"
+ ]
+ },
+ {
+"cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+"source": [
+"clc;clear;\n",
+"//Example 8.2\n",
+"//Polarizer,calculation of angle\n",
+"\n",
+"//given values\n",
+"Io=1;//intensity of polarised light\n",
+"I1=Io/2;//intensity of beam polarised by first by first polariser\n",
+"I2=Io/3;//intensity of light polarised by second polariser\n",
+"\n",
+"\n",
+" //calculation\n",
+"a=acos(sqrt(I2/I1));\n",
+"alpha=a*180/%pi;//conversion of angle into degree\n",
+"disp(alpha,'angle between characteristic directions (in degree) is');"
+ ]
+ }
+,
+{
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Example 8.3: calculation_of_birefringence.sce"
+ ]
+ },
+ {
+"cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+"source": [
+"clc;clear;\n",
+"//Example 8.3\n",
+"//calculation of birefringence\n",
+"\n",
+"//given values\n",
+"\n",
+"l=6*10^-7;//wavelength of light in metre\n",
+"d=3*10^-5;//thickness of crystal\n",
+"\n",
+"\n",
+" //calculation\n",
+" x=l/(4*d);\n",
+"disp(x,'the birefringance of the crystal is');"
+ ]
+ }
+],
+"metadata": {
+ "kernelspec": {
+ "display_name": "Scilab",
+ "language": "scilab",
+ "name": "scilab"
+ },
+ "language_info": {
+ "file_extension": ".sce",
+ "help_links": [
+ {
+ "text": "MetaKernel Magics",
+ "url": "https://github.com/calysto/metakernel/blob/master/metakernel/magics/README.md"
+ }
+ ],
+ "mimetype": "text/x-octave",
+ "name": "scilab",
+ "version": "0.7.1"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}