Scaling for AETC validation added.

This commit is contained in:
Lukas Klass 2020-06-18 10:24:38 +02:00
parent bdb67b3fe2
commit 6d70381b0c
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class BlackBodyTarget(ATarget):
# for the central wavelength of the given band
factor = self._band[band.upper()]["sfd"] / (bb(self._band[band.upper()]["wl"]) * u.sr) * u.sr
# Calculate spectral flux density for the given wavelengths and scale it for a star of the given magnitude
sfd = bb(wl_bins) * factor * 10 ** (- 2 / 5 * mag / u.mag)
sfd = bb(wl_bins) * factor * 10 ** (- 2 / 5 * mag / u.mag) # / 1.195 * 1.16 # scaling for AETC validation
# Initialize super class
super().__init__(SpectralQty(wl_bins, sfd), wl_bins, size)