Skip to content
Snippets Groups Projects
Commit 4f951151 authored by Lisa Schätzle's avatar Lisa Schätzle
Browse files

Update evaluateFarfieldSecondOrder.m

parent e3aa5ca6
No related branches found
No related tags found
No related merge requests found
function [F] = evaluateFarfieldSecondOrder(k, sampling, objects, par, R,q)
% Calculates a discretized version of the Born farfield operator by using
% the composite trapezoidal rule for the outer integral and calculations as suggested
% by Vainikko in order to approximate the individual Born farfields.
% INPUT: kappa - wave number
% sampling - cell array that contains all information about the
% discretization of the two spheres
% (detectors, illumination directions)
% object - String, that determines the shape of the refractive
% index n=1-q
% par - Vector, that contains all parameters for calculating q
% R,z - Ass.: supp(q) is contained in B_R(z)
% OUTPUT: F - Born farfield operator, nxhat*nd array
function [F] = evaluateFarfieldSecondOrder(k, sampling, objects, par, R, q)
% Calculates a discretized version of the Born farfield operator of second order
% by using the composite trapezoidal rule for the outer integral and calculations
% as suggested by Vainikko in order to approximate the individual Born farfields.
%
% INPUT: kappa Wave number, >0.
% sampling Structure containing information about the discretization.
% objects Structure including two strings that set the shape-types of
% the two scatterers.
% par Vector containing all further information about the scatterers
% shape, 2*6-array.
% R Sizes of the two scatterers, i.e. radii of balls containing them,
% vector of 2.
% q Values of the contrast function within the individual scatterers,
% >-1.
%
% OUTPUT: F Born farfield operator of second order, nxhat*nd-array.
%
% ************************************************************************************
kR = k * R;
% kz = k * z;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment