Skip to content

Commit

Permalink
Fixed bug in simulating light curves from PSDs given as arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniela Huppenkothen committed May 29, 2019
1 parent 2483291 commit 19c618e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions stingray/simulator/simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ def simulate(self, *args):
* x = simulate(s):
For generating a light curve from user-provided spectrum.
**Note**: In this case, the `red_noise` parameter is provided.
You can generate a longer light curve by providing a higher
frequency resolution on the input power spectrum.
Parameters:
* s : array-like
Expand Down Expand Up @@ -370,7 +373,10 @@ def _simulate_power_spectrum(self, s):
a1 = self.random_state.normal(size=len(s))
a2 = self.random_state.normal(size=len(s))

lc = self._find_inverse(a1*s, a2*s)
real = a1 * np.sqrt(s)
imaginary = a2 * np.sqrt(s)

lc = self._find_inverse(real, imaginary)
lc = Lightcurve(self.time, self._extract_and_scale(lc),
err_dist='gauss', dt=self.dt)

Expand Down Expand Up @@ -401,7 +407,7 @@ def _simulate_model(self, model):
# Compute PSD from model
simpsd = model(simfreq)

fac = np.sqrt(simpsd/2.)
fac = np.sqrt(simpsd)
pos_real = self.random_state.normal(size=nbins//2)*fac
pos_imag = self.random_state.normal(size=nbins//2)*fac

Expand Down Expand Up @@ -443,7 +449,7 @@ def _simulate_model_string(self, model_str, params):
else:
raise ValueError('Params should be list or dictionary!')

fac = np.sqrt(simpsd/2.)
fac = np.sqrt(simpsd)
pos_real = self.random_state.normal(size=nbins//2)*fac
pos_imag = self.random_state.normal(size=nbins//2)*fac

Expand Down

0 comments on commit 19c618e

Please sign in to comment.