diff options
author | Thomas White <taw@physics.org> | 2019-05-24 17:08:04 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-05-29 10:42:14 +0200 |
commit | 0e1726e01645c110e9935cc8c3e8f35291b2b82d (patch) | |
tree | b2e2fad656dda0dbd36b2e109944bd111a57bb7b /libcrystfel/src | |
parent | 581f8e8ab1b1d2833fd689540a2758bea1fc93ee (diff) |
Spectrum generation
Diffstat (limited to 'libcrystfel/src')
-rw-r--r-- | libcrystfel/src/spectrum.c | 58 |
1 files changed, 51 insertions, 7 deletions
diff --git a/libcrystfel/src/spectrum.c b/libcrystfel/src/spectrum.c index 576ff948..5cb5c47d 100644 --- a/libcrystfel/src/spectrum.c +++ b/libcrystfel/src/spectrum.c @@ -485,7 +485,8 @@ Spectrum *spectrum_generate_tophat(double wavelength, double bandwidth) * \param bandwidth Bandwidth as a fraction * * Generates a Gaussian spectrum centered on 'wavelength', where the standard - * deviation of the Gaussian is bandwidth/wavelength + * deviation of the Gaussian is bandwidth divided by wavelength (bandwidth + * fraction times k value). * * \returns A newly-allocated \ref Spectrum, or NULL on error. */ @@ -508,29 +509,72 @@ Spectrum *spectrum_generate_gaussian(double wavelength, double bandwidth) /** * \param wavelength Wavelength in metres - * \param bandwidth Bandwidth as a fraction + * \param bandwidth Bandwidth as a fraction of wavelength + * \param spike_width The width of the SASE spikes, as a fraction of wavelength + * \param rng A GSL random number generator * - * Generates a top-hat spectrum centered on 'wavelength', where the width of the - * flat top is bandwidth/wavelength + * Generates a SASE spectrum centered on 'wavelength', with 15 spikes of width + * spike_width divided by wavelength (i.e. spike_width times k value). The + * spikes will be distributed within a width of k values of bandwidth divided + * by wavelength (bandwidth times k-value). + * + * Note that CrystFEL is not an undulator simulation program. This function + * just simulates a rough idea of the kind of spiky spectrum resulting from the + * SASE process. * * \returns A newly-allocated \ref Spectrum, or NULL on error. */ Spectrum *spectrum_generate_sase(double wavelength, double bandwidth, double spike_width, gsl_rng *rng) { + int i; + Spectrum *s; + struct gaussian g[15]; + + s = spectrum_new(); + if ( s == NULL ) return NULL; + + for ( i=0; i<15; i++ ) { + g[0].kcen = 1.0/wavelength + (gsl_rng_uniform_pos(rng)-0.5) * bandwidth/wavelength; + g[0].sigma = spike_width/wavelength; + g[0].height = 1; + } + + spectrum_set_gaussians(s, g, 15); + + return s; } /** * \param wavelength Wavelength in metres - * \param bandwidth Bandwidth as a fraction + * \param bandwidth Bandwidth as a fraction of wavelength + * \param separation Separation between peak centres, in m^-1 * - * Generates a top-hat spectrum centered on 'wavelength', where the width of the - * flat top is bandwidth/wavelength + * Generates a two-colour spectrum with Gaussian peaks centered at wavenumbers + * 1/wavelength ± separation/2. Each peak will have a standard deviation of + * bandwidth divided by wavelength (bandwidth fraction times k value). * * \returns A newly-allocated \ref Spectrum, or NULL on error. */ Spectrum *spectrum_generate_twocolour(double wavelength, double bandwidth, double separation) { + Spectrum *s; + struct gaussian g[2]; + + s = spectrum_new(); + if ( s == NULL ) return NULL; + + g[0].kcen = 1.0/wavelength - separation/2.0; + g[0].sigma = bandwidth/wavelength; + g[0].height = 1; + + g[1].kcen = 1.0/wavelength + separation/2.0; + g[1].sigma = bandwidth/wavelength; + g[1].height = 1; + + spectrum_set_gaussians(s, g, 2); + + return s; } |