blob: fa015d9ae81af228b04a94d27f82aa06504923a7 (
plain)
1
2
3
4
5
6
7
8
9
|
clc;
clear all;
EF = 0.35; //Exposure factor in curie hour
SS = 5; // Percentage source strength
ET = EF/SS;//The exposure time in hour
disp('h',ET,'The exposure time is')
et=ET*60;//The exposure time in min
disp('min',et,'The exposure time is')
|