1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
package Demeter::Feff::Histogram;
use Moose::Role;
with 'Demeter::UI::Screen::Progress' if $Demeter::mode->ui eq 'screen';
use Carp;
use List::Util qw(sum);
use Scalar::Util qw(looks_like_number);
use Demeter::Constants qw($EPSILON5);
sub make_histogram {
my ($self, $rx, $ry, $ipot, $s02, $scale, $common) = @_;
my @paths = ();
$s02 ||= '1';
my $total = (looks_like_number($ry->[0])) ? sum(@$ry) : 1; # not quite right...
$self->start_spinner("Generating SSPaths for histogram") if ($self->mo->ui eq 'screen');
#print $total, $/;
foreach my $i (0 .. $#{$rx}) {
my $amp = $ry->[$i];
if (looks_like_number($amp)) {
$amp = sprintf("%.7f", $ry->[$i] / $total);
next if ($amp < $self->co->default(qw(histogram epsilon)));
};
my $reff = $rx->[$i];
my $delr = ($scale) ? sprintf("%s*%.5f", $scale, $reff) : 0;
my $this = Demeter::SSPath->new(parent => $self,
ipot => $ipot,
reff => $reff,
delr => $delr,
degen => 1,
n => 1,
s02 => $s02 . ' * ' . $amp,
);
$this -> set(@$common);
$this -> population($amp);
$this -> make_name;
(my $oldname = $this->name) =~ s{\s*\z}{};
$this -> name($oldname . '@ ' . sprintf("%.3f",$this->fuzzy));
#$this -> update_path(1);
push @paths, $this;
};
$self->stop_spinner if ($self->mo->ui eq 'screen');
return \@paths;
};
sub chi_from_histogram {
my ($self, $paths, $common) = @_;
$self->start_spinner("Making FPath from histogram") if ($self->mo->ui eq 'screen');
my $index = $self->mo->pathindex;
my $first = $paths->[0];
#$first->update_path(1);
my $save = $first->group;
$first->Index(255);
$first->group("h_i_s_t_o");
$first->_update('fft');
$first->dispense('process', 'histogram_first');
$first->group($save);
my $rbar = $first->population * $first->R;
my $rave = $first->population / $first->R;
my $rnorm = $first->population / ($first->R**2);
my $sum = $first->population;
my @pop = ($first->population);
my @r = ($first->R);
foreach my $i (1 .. $#{ $paths }) {
#$paths->[$i]->update_path(1);
$self->call_sentinal;
my $save = $paths->[$i]->group; # add up the SSPaths without requiring a group for each one
$paths->[$i]->Index(255);
$paths->[$i]->group("h_i_s_t_o");
$paths->[$i]->_update('fft');
$paths->[$i]->dispense('process', 'histogram_add');
$paths->[$i]->group($save);
$paths->[$i]->dispense('process', 'histogram_clean', {index=>255});
$rbar += $paths->[$i]->population * $paths->[$i]->R;
$rave += $paths->[$i]->population / $paths->[$i]->R;
$rnorm += $paths->[$i]->population / ($paths->[$i]->R**2);
$sum += $paths->[$i]->population;
push @pop, $paths->[$i]->population;
push @r, $paths->[$i]->R;
}
$rbar /= $sum;
$rave /= $rnorm;
my @dev;
#my $rdiff = 0;
foreach my $rr (@r) {
push @dev, $rr-$rave;
#$rdiff += abs($rr-$rave) / $rr**2;
};
#$rdiff /= $rnorm;
my ($sigsqr, $third, $fourth) = (0,0,0);
foreach my $i (0 .. $#r) {
$sigsqr += $pop[$i] * $dev[$i]**2 / $r[$i]**2;
$third += $pop[$i] * $dev[$i]**3 / $r[$i]**2;
$fourth += $pop[$i] * $dev[$i]**4 / $r[$i]**2;
};
$sigsqr /= $rnorm;
$third /= $rnorm;
$fourth /= $rnorm;
$fourth -= 3*$sigsqr**2;
$self->mo->pathindex($index);
my @k = $self->fetch_array('h___isto.k');
my @chi = $self->fetch_array('h___isto.chi');
my $data = Demeter::Data -> put(\@k, \@chi, datatype=>'chi', name=>'sum of histogram',
fft_kmin=>0, fft_kmax=>20, bft_rmin=>0, bft_rmax=>31);
my $path = Demeter::FPath -> new(absorber => $self->abs_species,
scatterer => $self->potentials->[$first->ipot]->[2],
reff => $rave,
source => $data,
n => 1,
degen => 1,
c1 => $rave,
c2 => $sigsqr,
c3 => $third,
c4 => $fourth,
@$common
);
my $name = sprintf("Histo SS %s-%s (%.5f)", $path->absorber, $path->scatterer, $rave);
$path->name($name);
$self->stop_spinner if ($self->mo->ui eq 'screen');
return $path;
};
sub histogram_from_file {
my ($self, $fname, $xcol, $ycol, $rmin, $rmax) = @_;
$xcol ||= 1;
$ycol ||= 2;
$rmin ||= 0;
$rmax ||= 100;
$xcol -= 1;
$ycol -= 1;
my (@x, @y);
carp("$fname could not be imported as a histogram file"), return (\@x, \@y) if (not -e $fname);
open(my $H, $fname);
foreach my $line (<$H>) {
chomp $line;
next if ($line =~ m{\A\s*\z});
next if ($line =~ m{\A[\#\*\%;]});
my @list = split(" ", $line);
next if ($list[$ycol] < $EPSILON5);
next if ($list[$xcol] < $rmin);
next if ($list[$xcol] > $rmax);
push @x, $list[$xcol];
push @y, $list[$ycol];
};
close $H;
return \@x, \@y;
};
sub histogram_from_function {
my ($self, $string, $rmin, $rmax) = @_;
my (@x, @y);
## use string to generate arrays in Ifeffit -- huh?
return \@x, \@y;
};
sub histogram_gamma {
my ($self, $rmin, $rmax, $grid) = @_;
my (@x, @y, @z);
my $r = $rmin;
while ($r <= $rmax+$EPSILON5) {
push @x, $r;
my $term = sprintf("t%d",int($r*10000));
push @y, "max(0, cn_gamma * prefactor * ((p_gamma+$term)**(p_gamma-1)) * exp(-p_gamma-$term))";
push @z, Demeter::GDS->new(gds=>'def', name=>$term, mathexp=>"2 * ($r - reff + dr_gamma) / (sigma_gamma*beta_gamma)");
$r += $grid;
};
## use string to generate arrays in Ifeffit
return \@x, \@y, \@z;
};
sub make_gamma_histogram {
my ($self, $rx, $ry, $rz, $common) = @_;
my @gds = (Demeter::GDS->new(gds => 'guess', name => 'cn_gamma', mathexp => '1' ),
Demeter::GDS->new(gds => 'guess', name => 'ss_gamma', mathexp => '0.009'),
Demeter::GDS->new(gds => 'guess', name => 'dr_gamma', mathexp => '0'),
Demeter::GDS->new(gds => 'guess', name => 'c3_gamma', mathexp => '0.001'),
Demeter::GDS->new(gds => 'def', name => 'sigma_gamma', mathexp => 'sqrt(max(0,ss_gamma))' ),
Demeter::GDS->new(gds => 'def', name => 'beta_gamma', mathexp => 'c3_gamma / sigma_gamma**3' ),
Demeter::GDS->new(gds => 'def', name => 'p_gamma', mathexp => '4 / beta_gamma**2' ),
Demeter::GDS->new(gds => 'def', name => 'prefactor', mathexp => '2 / (sigma_gamma * abs(beta_gamma) * gamma(p_gamma))' ),
);
my @paths = ();
my $rnot = $self->fuzzy;
foreach my $i (0 .. $#{$rx}) {
my $deltar = sprintf("%.4f + dr_gamma", $rx->[$i] - $rnot);
my $this = Demeter::Path->new(sp => $self,
delr => $deltar,
s02 => $ry->[$i],
sigma2 => 0,
n => 1,
parent => $self->feff,
@$common,
);
$this -> make_name;
(my $oldname = $this->name) =~ s{\s*\z}{};
$this -> name($oldname . '@ ' . sprintf("%.4f",$rx->[$i]));
$this -> update_path(1);
push @paths, $this;
push @gds, $rz->[$i];
};
return \@paths, \@gds;
};
1;
=head1 NAME
Demeter::Feff::Histogram - Arbitrary distribution functions
=head1 VERSION
This documentation refers to Demeter version 0.9.26.
=head1 SYNOPSIS
my $feff = Demeter::Feff->new(yaml=>'some_feff.yaml');
my @list_of_paths = @{ $feff->pathlist };
my $firstshell = $list_of_paths[0];
my ($rx, $ry) = $firstshell->histogram_from_file('RDFDAT20K', 1, 2, 2.5, 3.0);
my @common = (s02 => 'amp', sigma2 => 'sigsqr', e0 => 'enot', data=>$data);
my @paths = $firstshell -> make_histogram($rx, $ry, \@common);
=head1 DESCRIPTION
This role of the ScatteringPath object provides tools for generating
and parameterizing arbitrary distribution functions.
=head1 METHODS
=head2 Histogram from a file
=over 4
=item C<histogram_from_file>
Read data from a text file to define the distribution function.
Returns array references containing the x- and y-axis data.
($ref_r, $ref_y) = histogram_from_file($filename, $xcol, $ycol, $rmin, $rmax);
The arguments are the filename, the column numbers (counting from 1)
containing the R-grid and the amplitudes of the distributions, and the
minimum and maximum r-values to read from the file.
=item C<make_histogram>
Given the array references from C<histogram_from_file> or
C<histogram_gamma>, return a reference to a list of SSPath objects
defining the histogram.
$ref_paths = $firstshell -> make_histogram($rx, $ry, $scale, \@common);
The caller is the ScatteringPath object used as the Feff calculation
for each bin in the histogram. The first two arguments are the array
references. C<@rx> must be a referecne to an array of numbers -- the
x-axis values. C<@ry> may be a reference to an array of numbers or
strings. If numbers, they are taken as the bin poulations. If
strings, they are taken to be math expressions for computing the bin
populations.
The third argument is the name of a parameter that will be
used as an isotropic scaling factor for the dletaR parameter. The
remaining arguments will be passed to each resulting Path object.
=back
=head2 Histogram from a Gamm-like distribution
=over 4
=item C<histogram_gamma>
Define a gamma-like dsitribution function.
my ($rx, $ry, $rz) = $fspath -> sp -> histogram_gamma(1.8, 3.0, 0.03);
The return values are array references. The first is to the grid in R
space defined by the parameters of the method. The second is a list
of text strings which will be to define the C<s02> parameters of each
bin. The third is a list of GDS objects conatining additional def and
guess parameters required as part of the fitting model.
=item C<make_gamma_histogram>
Generate Path and GDS objects required to do the gamma-like fit using
a histogram. The first three arguments of the method are the return
values of C<histogram_gamma>, the last is an array reference which
will be passed as the attributes of each Path object generated.
my ($paths, $gamma_gds) = $fspath -> sp -> make_gamma_histogram($rx, $ry, $rz, $common);
To finish off the fit, you would do something like this:
my $e0 = Demeter::GDS->new(gds=>'guess', name=>'enot', mathexp=>0);
my $fit = Demeter::Fit->new(gds=>[$e0, @$gamma_gds], data=>[$data], paths=>$paths);
$fit->fit;
=back
=head1 CONFIGURATION AND ENVIRONMENT
See L<Demeter::Config> for a description of the configuration
system. The plot and ornaments configuration groups control the
attributes of the Plot object.
=head1 DEPENDENCIES
=head1 BUGS AND LIMITATIONS
=over 4
=item *
C<make_histogram> only makes sense right now using a single scattering
path as the basis. Need to throw an error if the ScatteringPath is
not a ss path.
=item *
Fits using the Gamma-like distribution are not very stable...
=item *
Need to implement user-defined distribution, although I don't have a
clear idea how to do so...
=back
=head1 AUTHOR
Bruce Ravel, L<http://bruceravel.github.io/home>
L<http://bruceravel.github.io/demeter/>
=head1 LICENCE AND COPYRIGHT
Copyright (c) 2006-2019 Bruce Ravel (L<http://bruceravel.github.io/home>). All rights reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See L<perlgpl>.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
=cut
|