Open fincardona opened 5 years ago
Hi, I think the problem is related to the number of frequencies passed to pysm.Instrument
. When only one frequency channel is given the smooth function doesn't work properly, if more frequencies are given then everything appears to work well.
Hello, I have a problem using
pysm.Instrument
.I use this standard sky configuration:
then I create a sky with:
Now, I create the two following different instruments:
1)
2)
I observe the sky through these two instruments with
instrument_*.observe(sky)
and then I read the corresponding maps that have been produced.1) In the first case the created map does not have the polarization components but only the intensity one. In fact, you will get an error message if you try:
while the right command would be:
but this means that Q and U maps have not been generated.
2) In the second case, the three maps (I, Q, U) are generated but in a wrong way since the Q and U maps are in the same order of magnitude of the I map:
Is there something I'm doing wrongly somewhere?