phase_rotate.cpp
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:2k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = phase_rotate.cpp
  3. //
  4. #include <stdlib.h>
  5. //#include <fstream>
  6. #include "parmfile.h"
  7. #include "misdefs.h"
  8. #include "model_error.h"
  9. #include "phase_rotate.h"
  10. #include "model_graph.h"
  11. #include "sinc.h"
  12. extern ParmFile *ParmInput;
  13. extern PracSimModel *ActiveModel;
  14. //======================================================
  15. PhaseRotate::PhaseRotate( char* instance_name,
  16.                         PracSimModel* outer_model,
  17.                         Signal< std::complex<float> >* in_sig,
  18.                         Signal< std::complex<float> >* out_sig )
  19.                 :PracSimModel(instance_name,
  20.                               outer_model)
  21. {
  22.   MODEL_NAME(PhaseRotate);
  23.   //---------------------------------------
  24.   //  Read model config parms
  25.   OPEN_PARM_BLOCK;
  26.   GET_FLOAT_PARM( Phase_Shift_Deg );
  27.   Rotate_Val = std::complex<float>( float(cos(PI*Phase_Shift_Deg/180.0)), 
  28.                                     float(sin(PI*Phase_Shift_Deg/180.0)));
  29.   //--------------------------------------
  30.   //  Connect input and output signals
  31.   In_Sig = in_sig;
  32.   Out_Sig = out_sig;
  33.   MAKE_OUTPUT( Out_Sig );
  34.   MAKE_INPUT( In_Sig );
  35.   }
  36. //======================================
  37. PhaseRotate::~PhaseRotate( void ){ };
  38. //=======================================
  39. void PhaseRotate::Initialize(void)
  40. {
  41.   //------------------
  42.   Block_Size = Out_Sig->GetBlockSize();
  43. }
  44. //=======================================================
  45. int PhaseRotate::Execute()
  46. {
  47.   std::complex<float> *out_sig_ptr;
  48.   std::complex<float> *in_sig_ptr;
  49.   int is;
  50.   out_sig_ptr = GET_OUTPUT_PTR( Out_Sig );
  51.   in_sig_ptr = GET_INPUT_PTR( In_Sig );
  52.   //-------------------------------------------------------
  53.   //  compute outputs that use inputs from previous block
  54.   for (is=0; is<Block_Size; is++)
  55.     {
  56.     *out_sig_ptr++ = Rotate_Val * (*in_sig_ptr++);
  57.     }
  58.   return(_MES_AOK);
  59. }