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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = vco_bp.cpp
  3. //
  4. #include <stdlib.h>
  5. //#include <fstream>
  6. #include "parmfile.h"
  7. #include "vco_bp.h"
  8. #include "misdefs.h"
  9. #include "model_graph.h"
  10. #include "typedefs.h"
  11. extern ParmFile *ParmInput;
  12. //========================================================================
  13. // constructor
  14. BandpassVco::BandpassVco( char* instance_name,
  15.                               PracSimModel* outer_model,
  16.                               Signal<float>* in_sig,
  17.                               Signal<float>* out_sig)
  18.                 :PracSimModel(instance_name,
  19.                               outer_model)
  20. {
  21.   MODEL_NAME(BandpassVco);
  22.   //----------------------------------------
  23.   //  Read model config parms
  24.   OPEN_PARM_BLOCK;
  25.   GET_DOUBLE_PARM(Freq_Lo_Hz);
  26.   GET_DOUBLE_PARM(Freq_Hi_Hz);
  27.   GET_FLOAT_PARM(Lo_Control_Val);
  28.   GET_FLOAT_PARM(Hi_Control_Val);
  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.   //  Compute derived parameters
  37.   Hz_Per_Volt = (Freq_Hi_Hz - Freq_Lo_Hz)/(Hi_Control_Val - Lo_Control_Val);
  38. }
  39. //========================================================
  40. // destructor
  41. BandpassVco::~BandpassVco( void ){ };
  42. //===========================================
  43. void BandpassVco::Initialize(void)
  44. {
  45.   Block_Size = In_Sig->GetBlockSize();
  46.   Samp_Intvl = Out_Sig->GetSampIntvl();
  47.   Time = 0.0;
  48.   Cumul_Phase = 0.0;
  49. }
  50. //============================================
  51. int BandpassVco::Execute(void)
  52. {
  53.   float *in_sig_ptr, in_val;
  54.   float *out_sig_ptr;
  55.   double inst_freq, freq_lo_hz;
  56.   double cumul_phase;
  57.   double samp_intvl;
  58.   int is;
  59.   out_sig_ptr = GET_OUTPUT_PTR( Out_Sig );
  60.   in_sig_ptr = GET_INPUT_PTR( In_Sig );
  61.   freq_lo_hz = Freq_Lo_Hz;
  62.   samp_intvl = Samp_Intvl;
  63.   cumul_phase = Cumul_Phase;
  64.   for (is=0; is<Block_Size; is++)
  65.     {
  66.     in_val = *in_sig_ptr++;
  67.     inst_freq = freq_lo_hz + Hz_Per_Volt * (in_val - Lo_Control_Val);
  68.     cumul_phase = fmod(cumul_phase + samp_intvl * inst_freq, 1.0);
  69.     *out_sig_ptr++ = float(sin(TWO_PI * cumul_phase));
  70.     }
  71.   Cumul_Phase = cumul_phase;
  72.   return(_MES_AOK);
  73. }