blob: 152345ed61fbf5b927370c1fc854881f2fdadd6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Ex7_1
clc;
// Given:
f=1.03;// fast fission factor
n=1.32;// no. of fast neutrons generated per thermal radiations
ref=0.89;// resonance escape factor
tuf=0.87;// thermal utilization factor
// Solution
rf=f*n*ref*tuf;//reproduction factor
printf("The reproduction factor for the reactor is = %f",rf)
|