| 7 |
|
# |
| 8 |
|
use strict; |
| 9 |
|
sub userror { |
| 10 |
< |
print STDERR "Usage: genBSDF [-n Nproc][-c Nsamp][-dim xmin xmax ymin ymax zmin zmax][{+|-}mgf][{+|-}geom] [input ..]"; |
| 10 |
> |
print STDERR "Usage: genBSDF [-n Nproc][-c Nsamp][-dim xmin xmax ymin ymax zmin zmax][{+|-}mgf][{+|-}geom] [input ..]\n"; |
| 11 |
|
exit 1; |
| 12 |
|
} |
| 13 |
|
my $td = `mktemp -d /tmp/genBSDF.XXXXXX`; |
| 121 |
|
my $nx = int(sqrt($nsamp*($dim[1]-$dim[0])/($dim[3]-$dim[2])) + .5); |
| 122 |
|
my $ny = int($nsamp/$nx + .5); |
| 123 |
|
$nsamp = $nx * $ny; |
| 124 |
+ |
# Compute scattering data using rtcontrib |
| 125 |
+ |
my $cmd = "cnt $ndiv $ny $nx | rcalc -of -e '$tcal' " . |
| 126 |
+ |
"-e 'xp=(\$3+rand(.35*recno-15))*(($dim[1]-$dim[0])/$nx)+$dim[0]' " . |
| 127 |
+ |
"-e 'yp=(\$2+rand(.86*recno+11))*(($dim[3]-$dim[2])/$ny)+$dim[2]' " . |
| 128 |
+ |
"-e 'zp:$dim[4]-1e-5' " . |
| 129 |
+ |
q{-e 'Kbin=$1;x1=rand(1.21*recno+2.75);x2=rand(-3.55*recno-7.57)' } . |
| 130 |
+ |
q{-e '$1=xp;$2=yp;$3=zp;$4=Dx;$5=Dy;$6=Dz' } . |
| 131 |
+ |
"| rtcontrib -h -ff -n $nproc -c $nsamp -e '$kcal' -b kbin -bn $ndiv " . |
| 132 |
+ |
"-m $modnm -w -ab 5 -ad 700 -lw 3e-6 $octree " . |
| 133 |
+ |
"| rcalc -e 'x1:.5;x2:.5;$tcal' " . |
| 134 |
+ |
"-e 'mod(n,d):n-floor(n/d)*d' -e 'Kbin=mod(recno-1,$ndiv)' " . |
| 135 |
+ |
q{-if3 -e '$1=(0.265*$1+0.670*$2+0.065*$3)/(Komega*Dz)'}; |
| 136 |
+ |
my @darr = `$cmd`; |
| 137 |
+ |
die "Failure running: $cmd\n" if ( $? ); |
| 138 |
|
# Output XML prologue |
| 139 |
|
print |
| 140 |
|
'<?xml version="1.0" encoding="UTF-8"?> |
| 249 |
|
<ScatteringDataType>BTDF</ScatteringDataType> |
| 250 |
|
<ScatteringData> |
| 251 |
|
'; |
| 252 |
< |
# Compute actual scattering data using rtcontrib |
| 253 |
< |
system "cnt $ndiv $ny $nx | rcalc -of -e '$tcal' " . |
| 254 |
< |
"-e 'xp=(\$3+rand(.35*recno-15))*(($dim[1]-$dim[0])/$nx)+$dim[0]' " . |
| 255 |
< |
"-e 'yp=(\$2+rand(.86*recno+11))*(($dim[3]-$dim[2])/$ny)+$dim[2]' " . |
| 256 |
< |
"-e 'zp:$dim[4]-1e-5' " . |
| 257 |
< |
q{-e 'Kbin=$1;x1=rand(1.21*recno+2.75);x2=rand(-3.55*recno-7.57)' } . |
| 258 |
< |
q{-e '$1=xp;$2=yp;$3=zp;$4=Dx;$5=Dy;$6=Dz' } . |
| 245 |
< |
"| rtcontrib -h -ff -n $nproc -c $nsamp -e '$kcal' -b kbin -bn $ndiv " . |
| 246 |
< |
"-m $modnm -w -ab 5 -ad 700 -lw 3e-6 $octree " . |
| 247 |
< |
"| rcalc -e 'x1:.5;x2:.5;$tcal' -e 'Kbin=floor((recno-1)/$ndiv)' " . |
| 248 |
< |
q{-if3 -e '$1=(0.265*$1+0.670*$2+0.065*$3)/(Komega*Dz)'}; |
| 252 |
> |
# Output computed data (transposed order) |
| 253 |
> |
for (my $od = 0; $od < $ndiv; $od++) { |
| 254 |
> |
for (my $id = 0; $id < $ndiv; $id++) { |
| 255 |
> |
print $darr[$ndiv*$id + $od]; |
| 256 |
> |
} |
| 257 |
> |
print "\n"; |
| 258 |
> |
} |
| 259 |
|
# Output XML epilogue |
| 260 |
|
print |
| 261 |
|
' </ScatteringData> |