0

これは簡単な質問かもしれませんが、これを回避する方法が見つかりませんでした。s関数ブロックを使用してアルゴリズムに波信号を入力しています。波信号は約2000ポイントのファイルから読み取られています。

最初にシミュレーション時間を50に設定して開始し、次に50ポイントのみを読み取りました。「tout」変数を確認しました。0,1,2、....50でした

次に、シミュレーション時間を100に増やしました。それでも結果は同じです。50ポイントしか読み取られません。しかし、宣伝は0、2、4、6..50です。

10000まで試しましたが、0、200、400、600などの広い時間ステップでのみ50の値を読み取ります。これは、s-functionまたはsimulinkの設定に問題がありますか?これがcs-functionファイルです

    /* Give S-function a name */
#define S_FUNCTION_NAME  Readip
#define S_FUNCTION_LEVEL 2

/* Include SimStruct definition and file I/O functions */
#include "simstruc.h"
#include <stdio.h>
#include <stdlib.h>

static FILE* file2;
/* Called at the beginning of the simulation */
    static void mdlInitializeSizes(SimStruct *S)

{

        ssSetNumSFcnParams(S, 0); 


   if (ssGetNumSFcnParams(S) != ssGetSFcnParamsCount(S)) {
        return;
    }
    if (!ssSetNumOutputPorts(S, 3)) return;
    ssSetNumContStates(S, 0);
    ssSetNumDiscStates(S, 0);
    ssSetOutputPortWidth(S, 0, 1);
    ssSetOutputPortDataType(S,0,DYNAMICALLY_SIZED);
    ssSetOutputPortOptimOpts(S, 0, SS_REUSABLE_AND_LOCAL);
    ssSetOutputPortWidth(S, 1, 1);
    ssSetOutputPortDataType(S,1,DYNAMICALLY_SIZED);
    ssSetOutputPortOptimOpts(S, 1, SS_REUSABLE_AND_LOCAL);
    ssSetOutputPortWidth(S, 2, 1);
    ssSetOutputPortDataType(S,2,DYNAMICALLY_SIZED);
    ssSetOutputPortOptimOpts(S, 2, SS_REUSABLE_AND_LOCAL);


       ssSetNumPWork(S,1);
        ssSetNumSampleTimes(S, 1);
    }


    /* Set sample times for the block */
    static void mdlInitializeSampleTimes(SimStruct *S)
    {
        ssSetSampleTime(S, 0, CONTINUOUS_SAMPLE_TIME);
        ssSetOffsetTime(S, 0, 0.0);
    }



        #define MDL_START  /* Change to #undef to remove function */
        #if defined(MDL_START) 
          /* Function: mdlStart ========

    ===============================================
       * Abstract:
       *    This function is called once at start of model execution. If you
       *    have states that shou

ld be initialized once, this is the place
   *    to do it.
   */
  static void mdlStart(SimStruct *S)
  {
      /*at start of model execution, open the file and store the pointer
       *in the pwork vector */
      void** pwork = ssGetPWork(S);
      FILE *datafile;

      datafile = fopen("table.data","r");
      pwork[0] =  datafile;

      }
    #endif /*  MDL_START */

/* Function: mdlOutputs =======================================================
 * Abstract:
 *    In this function, you compute the outputs of your S-function
 *    block. Generally outputs are placed in the output vector, ssGetY(S).
 */
static void mdlOutputs(SimStruct *S, int_T tid)
{
    //get pointer to the block's output signal
    real_T       *y1 = ssGetOutputPortSignal(S,0);
    real_T       *y2 = ssGetOutputPortSignal(S,1);
    real_T       *y3 = ssGetOutputPortSignal(S,2);
    char a[10];
    char b[10];
    char c[10];
    /*get pointer to array of pointers, where the first element is the address
     *of the open file */
    void** pwork = ssGetPWork(S);

/*read a floating point number and then the comma delimiter
 *store the result in y*/

fscanf(pwork[0],"%s    %s    %s",&a,&b,&c);
*y1=atof(a);
*y2=atof(b);
    *y3=atof(c);

}



/* Function: mdlTerminate =====================================================
 * Abstract:
 *    In this function, you should perform any actions that are necessary
 *    at the termination of a simulation.  For example, if memory was
 *    allocated in mdlStart, this is the place to free it.
 */
static void mdlTerminate(SimStruct *S)
{
    //close the file
    void** pwork = ssGetPWork(S);
      FILE *datafile;

      datafile = pwork[0];
      fclose(datafile);

}



/*=============================*
 * Required S-function trailer *
 *=============================*/

    #ifdef  MATLAB_MEX_FILE    /* Is this file being compiled as a MEX-file? */
    #include "simulink.c"      /* MEX-file interface mechanism */
    #else
    #include "cg_sfun.h"       /* Code generation registration function */
    #endif
4

2 に答える 2

3

これは設定の問題のようです。ソルバーのステップサイズを指定せず、ブロックがサンプル時間を示さない場合、Simulinkはデフォルトのを選択しますSimulation Time / 50[モデル構成パラメーター]ダイアログを開き、左側のペインでソルバーをクリックするだけです。固定ステップソルバーを使用している場合は、ステップサイズを明示的に設定できます。可変ステップソルバーを使用している場合は、最大/最小ステップサイズを指定できます。

さらに、S-function専用の離散サンプル期間を指定する場合は、このリンクを調べて、必要に応じて実装していることを確認することをお勧めmdlInitializeSampleTimesします。

于 2012-10-10T11:19:54.100 に答える
1

固定ステップ離散ソルバーを使用する必要があります。定期的なサンプル時間の制約を「制約なし」に設定します。2000ステップになるように、固定ステップサイズとシミュレーション停止時間を入力します。

たとえば、1秒/ステップと2000秒の停止時間、または0.1秒/ステップと200秒の停止時間。

于 2012-10-26T14:44:14.263 に答える