From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 24/CH44/EX44.6/Example44_6.sce | 18 ++++++++++++++++++ 24/CH44/EX44.6/Example44_6_result.txt | 5 +++++ 2 files changed, 23 insertions(+) create mode 100755 24/CH44/EX44.6/Example44_6.sce create mode 100755 24/CH44/EX44.6/Example44_6_result.txt (limited to '24/CH44/EX44.6') diff --git a/24/CH44/EX44.6/Example44_6.sce b/24/CH44/EX44.6/Example44_6.sce new file mode 100755 index 000000000..799f193f3 --- /dev/null +++ b/24/CH44/EX44.6/Example44_6.sce @@ -0,0 +1,18 @@ +//Given that +d = 200 //in kg/m^3 +fac = 10^3 +Na = 6.023*10^23 +Mt = 3*10^-3 //in kg/mol +Md = 2*10^-3 //in kg/mol + +txt = mopen('Example44_6_result.txt','wt') +//Sample Problem 44-6a +mfprintf(txt, '**Sample Problem 44-6a**\n') +n = 2*fac *d *Na /(Mt + Md) +mfprintf(txt, 'The number of particle in unit volume is %em^-3\n', n) + +//Sample Problem 44-6b +mfprintf(txt, '\n**Sample Problem 44-6b**\n') +TauMin = 10^20/n +mfprintf(txt, 'The duration of time, pallet can maintain is of the order of %esec', TauMin) +mclose(txt) \ No newline at end of file diff --git a/24/CH44/EX44.6/Example44_6_result.txt b/24/CH44/EX44.6/Example44_6_result.txt new file mode 100755 index 000000000..954fbe6e3 --- /dev/null +++ b/24/CH44/EX44.6/Example44_6_result.txt @@ -0,0 +1,5 @@ +**Sample Problem 44-6a** +The number of particle in unit volume is 4.818400e+031m^-3 + +**Sample Problem 44-6b** +The duration of time, pallet can maintain is of the order of 2.075378e-012sec \ No newline at end of file -- cgit