diff options
author | prashantsinalkar | 2020-04-14 10:19:27 +0530 |
---|---|---|
committer | prashantsinalkar | 2020-04-14 10:23:54 +0530 |
commit | 476705d693c7122d34f9b049fa79b935405c9b49 (patch) | |
tree | 2b1df110e24ff0174830d7f825f43ff1c134d1af /Oscillations_and_Waves_by_S_Prakesh/4-Coupled_Oscillator.ipynb | |
parent | abb52650288b08a680335531742a7126ad0fb846 (diff) | |
download | all-scilab-tbc-books-ipynb-476705d693c7122d34f9b049fa79b935405c9b49.tar.gz all-scilab-tbc-books-ipynb-476705d693c7122d34f9b049fa79b935405c9b49.tar.bz2 all-scilab-tbc-books-ipynb-476705d693c7122d34f9b049fa79b935405c9b49.zip |
Initial commit
Diffstat (limited to 'Oscillations_and_Waves_by_S_Prakesh/4-Coupled_Oscillator.ipynb')
-rw-r--r-- | Oscillations_and_Waves_by_S_Prakesh/4-Coupled_Oscillator.ipynb | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/Oscillations_and_Waves_by_S_Prakesh/4-Coupled_Oscillator.ipynb b/Oscillations_and_Waves_by_S_Prakesh/4-Coupled_Oscillator.ipynb new file mode 100644 index 0000000..0bc7d98 --- /dev/null +++ b/Oscillations_and_Waves_by_S_Prakesh/4-Coupled_Oscillator.ipynb @@ -0,0 +1,59 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 4: Coupled Oscillator" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.2: ratio_of_frequency.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Example 2 // ratio of Frequency\n", +"clc;\n", +"clear;\n", +"close;\n", +"k=1;//assume\n", +"m1=16;//a.m.u\n", +"m2=12;//a.m.u\n", +"m3=m1;//\n", +"rt=((m2+2*m1)/m2)^(1/2);//\n", +"disp(rt,'ratio of frequency 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 +} |