亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? bldc_1_sinusoidal.c

?? 用C語言編寫的S函數源代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/*  File    : stspace.c
 *  Abstract:
 *
 *      Example mex file S-function for state-space system.
 *
 *      Implements a set of state-space equations.
 *      You can turn this into a new block by using the
 *      S-function block and Mask facility.
 *
 *      This example MEX-file performs the same function
 *      as the built-in State-space block. This is an
 *      example of a MEX-file where the number of inputs,
 *      outputs, and states is dependent on the parameters
 *      passed in from the workspace.
 *
 *      Syntax  [sys, x0] = stspace(t,x,u,flag,A,B,C,D,X0)
 *
 *      For more details about S-functions, see simulink/src/sfuntmpl_doc.c
 *
 *  Copyright 1990-2002 The MathWorks, Inc.
 *  $Revision: 1.12 $
 */

#define S_FUNCTION_NAME bldc_1_sinusoidal
#define S_FUNCTION_LEVEL 2

#include "simstruc.h"
#include "math.h"


#define R_IDX 0  //motor phase resister
#define R_PARAM(S) ssGetSFcnParam(S,R_IDX)
 
#define L_IDX 1  //motor phase self inductance
#define L_PARAM(S) ssGetSFcnParam(S,L_IDX)

#define M_IDX 2  //motor phase mutual inductance
#define M_PARAM(S) ssGetSFcnParam(S,M_IDX)
 
#define Ke_IDX 3  //motor back_EMF coefficient
#define Ke_PARAM(S) ssGetSFcnParam(S,Ke_IDX)

#define X0_IDX 4  //initial value of the system states,4-dimensional vector
#define X0_PARAM(S) ssGetSFcnParam(S,X0_IDX)

#define P_IDX 5  //number of poles
#define P_PARAM(S) ssGetSFcnParam(S,P_IDX)

#define J_IDX 6  //drive inertia
#define J_PARAM(S) ssGetSFcnParam(S,J_IDX)

#define NPARAMS 7
#define NSTATES 5  //iab,iac,ibc,electrical ratating speed in rad/s,electrical angle of the rotor

const real_T delta=0.0001;
const real_T pai=3.14159;

real_T   flag = 0;
unsigned char commu_flag = 1;
real_T   VAB;
real_T   VAC;
real_T   VBC;
real_T   Vsg;  //motor Y neutral point
real_T   Vag;  
real_T   Vbg;  
real_T   Vcg;  
/*====================*
 * S-function methods *
 *====================*/
#define MDL_CHECK_PARAMETERS
#if defined(MDL_CHECK_PARAMETERS) && defined(MATLAB_MEX_FILE)
  /* Function: mdlCheckParameters =============================================
   * Abstract:
   *    Validate our parameters to verify they are okay.
   */
static void mdlCheckParameters(SimStruct *S)
{
	if(mxGetM(X0_PARAM(S))!=NSTATES)
	{
		ssSetErrorStatus(S,"the initial value of the states has been false dimensioned");
                return;
        }
}
#endif
/* Function: mdlInitializeSizes ===============================================
 * Abstract:
 *    The sizes information is used by Simulink to determine the S-function
 *    block's characteristics (number of inputs, outputs, states, etc.).
 */
static void mdlInitializeSizes(SimStruct *S)
{
    ssSetNumSFcnParams(S, NPARAMS);  /* Number of expected parameters */
#if defined(MATLAB_MEX_FILE)
    if (ssGetNumSFcnParams(S) == ssGetSFcnParamsCount(S)) {
        
        if (ssGetErrorStatus(S) != NULL) {
            return;
        }
    } else {
        return; /* Parameter mismatch will be reported by Simulink */
    }
#endif

    ssSetNumContStates(S, NSTATES);
    ssSetNumDiscStates(S, 0);

    if (!ssSetNumInputPorts(S, 9)) return;//6 switching signals,Vs,TL, pwm signal and flux density
    /*The inverter DC Link voltage,Vs*/
    ssSetInputPortWidth(S, 0, 1);  
    /*The switching signals for S1 to S6 respectivly,named according to the convention*/
    ssSetInputPortWidth(S, 1, 1);
    ssSetInputPortWidth(S, 2, 1);
    ssSetInputPortWidth(S, 3, 1);
    ssSetInputPortWidth(S, 4, 1);
    ssSetInputPortWidth(S, 5, 1);
    ssSetInputPortWidth(S, 6, 1);
    /*Load torque on the motor shaft*/
    ssSetInputPortWidth(S, 7, 1);
    /*pwm signal*/
    ssSetInputPortWidth(S, 8, 1);
        
    /*set direct feedthru appearing in the system output*/
    ssSetInputPortDirectFeedThrough(S, 0, 0);
    ssSetInputPortDirectFeedThrough(S, 1, 1);
    ssSetInputPortDirectFeedThrough(S, 2, 1);
    ssSetInputPortDirectFeedThrough(S, 3, 1);
    ssSetInputPortDirectFeedThrough(S, 4, 1);
    ssSetInputPortDirectFeedThrough(S, 5, 1);
    ssSetInputPortDirectFeedThrough(S, 6, 1);
    ssSetInputPortDirectFeedThrough(S, 7, 0);
    ssSetInputPortDirectFeedThrough(S, 8, 1);   
    /*model output are phase currents and magnetoelectrical torque*/
    if (!ssSetNumOutputPorts(S, 12)) return;
    /*Magnetoelectrical torque*/
    ssSetOutputPortWidth(S, 0, 1);
    /*motor stator phase currents*/
    ssSetOutputPortWidth(S, 1, 1);
    ssSetOutputPortWidth(S, 2, 1);
    ssSetOutputPortWidth(S, 3, 1);
    /*motor electrical speed*/
    ssSetOutputPortWidth(S, 4, 1);
    /*motor 3 phase BEMF*/
    ssSetOutputPortWidth(S, 5, 1);
    ssSetOutputPortWidth(S, 6, 1);
    ssSetOutputPortWidth(S, 7, 1);
    /*observe the DC link current*/
    ssSetOutputPortWidth(S, 8, 1);
    /*observe the motor terminal voltage*/
    ssSetOutputPortWidth(S, 9, 1);
    ssSetOutputPortWidth(S, 10, 1);
    ssSetOutputPortWidth(S, 11, 1);
        
    ssSetNumSampleTimes(S, 1);
    /*
    ssSetNumRWork(S, 0);
    ssSetNumIWork(S, 0);
    ssSetNumPWork(S, 0);
    ssSetNumModes(S, 0);
    ssSetNumNonsampledZCs(S, 0);
           */
    /* Take care when specifying exception free code - see sfuntmpl_doc.c */
    ssSetOptions(S, SS_OPTION_EXCEPTION_FREE_CODE);
}



/* Function: mdlInitializeSampleTimes =========================================
 * Abstract:
 *    S-function is comprised of only continuous sample time elements
 */
static void mdlInitializeSampleTimes(SimStruct *S)
{
    ssSetSampleTime(S, 0, CONTINUOUS_SAMPLE_TIME);
    ssSetOffsetTime(S, 0, 0.0);
}



#define MDL_INITIALIZE_CONDITIONS
/* Function: mdlInitializeConditions ========================================
 * Abstract:
 *    If the initial condition parameter (X0) is not an empty matrix,
 *    then use it to set up the initial conditions, otherwise,
 *    set the intial conditions to all 0.0
 */
static void mdlInitializeConditions(SimStruct *S)
{
    real_T *x0 = ssGetContStates(S);
    int_T  i , nStates;
    nStates = ssGetNumContStates(S);//get from simulink the number of continours states of the model
    
    if (mxGetM(X0_PARAM(S)) != 0)  //this parameter is not an empty matrix
        {
        	const real_T *pr = mxGetPr(X0_PARAM(S));
        	 for (i = 0; i < nStates; i++) 
        	 {
                     *x0++ = *pr++;
                 }
       }
     else  //this parameter is an empty matrix
       {
       for(i = 0; i < nStates; i++) 
          {
            *x0++ = 0.0;
          }	
       }
}



/* Function: mdlOutputs =======================================================
 * Abstract:
 *      
 */
static void mdlOutputs(SimStruct *S, int_T tid)
{
    real_T            *y0       = ssGetOutputPortRealSignal(S,0);
    real_T            *y1       = ssGetOutputPortRealSignal(S,1);
    real_T            *y2       = ssGetOutputPortRealSignal(S,2);
    real_T            *y3       = ssGetOutputPortRealSignal(S,3);
    real_T            *y4       = ssGetOutputPortRealSignal(S,4);
    real_T            *y5       = ssGetOutputPortRealSignal(S,5);
    real_T            *y6       = ssGetOutputPortRealSignal(S,6);
    real_T            *y7       = ssGetOutputPortRealSignal(S,7);
    real_T            *y8       = ssGetOutputPortRealSignal(S,8);
    real_T            *y9       = ssGetOutputPortRealSignal(S,9);
    real_T            *y10       = ssGetOutputPortRealSignal(S,10);
    real_T            *y11       = ssGetOutputPortRealSignal(S,11);
        
    real_T            *x       = ssGetContStates(S);
    
    InputRealPtrsType uPtrs1  = ssGetInputPortRealSignalPtrs(S,1);//S1
    InputRealPtrsType uPtrs2  = ssGetInputPortRealSignalPtrs(S,2);//S2
    InputRealPtrsType uPtrs3  = ssGetInputPortRealSignalPtrs(S,3);//S3
    InputRealPtrsType uPtrs4  = ssGetInputPortRealSignalPtrs(S,4);//S4
    InputRealPtrsType uPtrs5  = ssGetInputPortRealSignalPtrs(S,5);//S5
    InputRealPtrsType uPtrs6  = ssGetInputPortRealSignalPtrs(S,6);//S6
    InputRealPtrsType uPtrs8  = ssGetInputPortRealSignalPtrs(S,8);//pwm signal
    real_T             S1   = *uPtrs1[0];
    real_T             S2   = *uPtrs2[0];
    real_T             S3   = *uPtrs3[0];
    real_T             S4   = *uPtrs4[0];
    real_T             S5   = *uPtrs5[0];
    real_T             S6   = *uPtrs6[0];
    real_T             pwm  = *uPtrs8[0];
           
    const real_T      *Ke      = mxGetPr(Ke_PARAM(S));//back_EMF coefficient
    const real_T      *P       = mxGetPr(P_PARAM(S));//number of poles
    const real_T      *R       = mxGetPr(R_PARAM(S));//motor stator phase resistor
    const real_T      *L       = mxGetPr(L_PARAM(S));//motor stator phase self inductance
    const real_T      *M       = mxGetPr(M_PARAM(S));//motor stator mutual inductance
   
    real_T  	       B1   = sin(x[4])+(1/7.9)*sin(3*x[4]);
    real_T  	       B2   = sin(x[4]-2*pai/3)+(1/7.9)*sin(3*(x[4]-2*pai/3));
    real_T  	       B3   = sin(x[4]+2*pai/3)+(1/7.9)*sin(3*(x[4]+2*pai/3));
    
    real_T             ia   = (x[0]+x[1])/3;//phase a current
    real_T             ib   = (x[2]-x[0])/3;//phase b current
    real_T             ic   = (-1)*(x[1]+x[2])/3;//phase c current
    
    real_T             iah=0;//current flowing thru the high side switch and free-wheeling diode of phase a
    real_T             ibh=0;//current flowing thru the high side switch and free-wheeling diode of phase b
    real_T             ich=0;//current flowing thru the high side switch and free-wheeling diode of phase c
    if(S1==1) iah=ia;
    else if(S4==1&&pwm==1) iah=0;
         else if(S4==1&&pwm==0) iah=ia;
              else if(ia>0) iah=0;
    
    if(S3==1) ibh=ib;
    else if(S6==1&&pwm==1) ibh=0;
         else if(S6==1&&pwm==0) ibh=ib;
              else if(ib>0) ibh=0;
              
    if(S5==1) ich=ic;
    else if(S2==1&&pwm==1) ich=0;
         else if(S2==1&&pwm==0) ich=ic;
              else if(ic>0) ich=0;
       
        
    /*calculating stator phase currents*/     
    y1[0] = ia;  //stator phase A current
    y2[0] = ib;  //stator phase B current
    y3[0] = ic;  //stator phase C current
    /*calculating motor electrical speed*/
    y4[0] = x[3];
    /*calculating electrical torque*/
    y0[0] = P[0]*Ke[0]*((x[0]+x[1])*B1+(x[2]-x[0])*B2-(x[1]+x[2])*B3)/3;
    /*observe 3 phase BEMF*/
    y5[0] = Ke[0]*x[3]*B1/P[0];//phase a BEMF
    y6[0] = Ke[0]*x[3]*B2/P[0];//phase b BEMF
    y7[0] = Ke[0]*x[3]*B3/P[0];//phase c BEMF
    
    /*simulate the saturation function of the shunt current sense circuit*/
    if((iah+ibh+ich)<=0) y8[0]=0;
    else y8[0] = iah+ibh+ich;
    y9[0] = VAB;
    y10[0]= VAC;
    y11[0]= flag;
}



#define MDL_DERIVATIVES
/* Function: mdlDerivatives =================================================
 * Abstract:
 *      xdot = Ax + Bu
 */
static void mdlDerivatives(SimStruct *S)
{
    real_T            *dx     = ssGetdX(S);
    real_T            *x      = ssGetContStates(S);
    real_T            *y0     = ssGetOutputPortRealSignal(S,0);
    
   
    InputRealPtrsType uPtrs0  = ssGetInputPortRealSignalPtrs(S,0);//inverter DC-link voltage
    InputRealPtrsType uPtrs1  = ssGetInputPortRealSignalPtrs(S,1);//S1
    InputRealPtrsType uPtrs2  = ssGetInputPortRealSignalPtrs(S,2);//S2
    InputRealPtrsType uPtrs3  = ssGetInputPortRealSignalPtrs(S,3);//S3
    InputRealPtrsType uPtrs4  = ssGetInputPortRealSignalPtrs(S,4);//S4
    InputRealPtrsType uPtrs5  = ssGetInputPortRealSignalPtrs(S,5);//S5
    InputRealPtrsType uPtrs6  = ssGetInputPortRealSignalPtrs(S,6);//S6
    InputRealPtrsType uPtrs7  = ssGetInputPortRealSignalPtrs(S,7);//load torque on the motor shaft
    InputRealPtrsType uPtrs8  = ssGetInputPortRealSignalPtrs(S,8);//pwm signal
    
    const real_T      *R    = mxGetPr(R_PARAM(S));//motor stator phase resistor
    const real_T      *L    = mxGetPr(L_PARAM(S));//motor stator phase self inductance
    const real_T      *M    = mxGetPr(M_PARAM(S));//motor stator mutual inductance
    const real_T      *Ke   = mxGetPr(Ke_PARAM(S));//back_EMF coefficient
    const real_T      *J    = mxGetPr(J_PARAM(S));//drive inertia
    const real_T      *P    = mxGetPr(P_PARAM(S));//number of poles
 
    real_T             Vs   = *uPtrs0[0];
    real_T             Tl   = *uPtrs7[0];
    real_T             S1   = *uPtrs1[0];
    real_T             S2   = *uPtrs2[0];
    real_T             S3   = *uPtrs3[0];
    real_T             S4   = *uPtrs4[0];
    real_T             S5   = *uPtrs5[0];
    real_T             S6   = *uPtrs6[0];
    real_T             pwm  = *uPtrs8[0];
    
    real_T             ia   = (x[0]+x[1])/3;//phase a current
    real_T             ib   = (x[2]-x[0])/3;//phase b current
    real_T             ic   = (-1)*(x[1]+x[2])/3;//phase c current
    real_T             ea   = Ke[0]*x[3]*(sin(x[4])+(1/7.9)*sin(3*x[4]))/P[0];//phase a BEMF
    real_T             eb   = Ke[0]*x[3]*(sin(x[4]-2*pai/3)+(1/7.9)*sin(3*(x[4]-2*pai/3)))/P[0];//phase b BEMF
    real_T             ec   = Ke[0]*x[3]*(sin(x[4]+2*pai/3)+(1/7.9)*sin(3*(x[4]+2*pai/3)))/P[0];//phase c BEMF
    real_T             Vab;
    real_T             Vac;
    real_T             Vbc;
        
    /*line to line voltage determination*/
    /*stator voltage vector 1*/
    if((S5==1)&&(S6==1))
    { commu_flag = 1;
      if(pwm==1)//pwm on mode
      {
    	if((-1)*ia>=delta&&(Vsg+ea)<Vs)  //commutation freewheeling
    	{
    		Vab = Vs;
    		Vac = 0;
            Vag = Vs;
            Vbg = 0;
    		Vcg = Vs;
            Vsg = (2*Vs-ea-eb-ec)/3;
    	}
    	else   //commutation freewheeling over
    	{
    		Vab = 0.5*(Vs+2*ea-eb-ec);
    		Vac = 0.5*(2*ea-Vs-eb-ec);
            Vsg = (Vs-ec-eb)/2;
            Vag = Vsg+ea;
            Vbg = 0;
            Vcg = Vs;
    	}
    	Vbc = (-1)*Vs;
      }
      else  //pwm off mode
      {
      	if((-1)*ia>=delta&&(Vsg+ea)<Vs)  //commutation freewheeling
      	{
      		if((-1)*ib>=delta)//pwm freewheeling
      		{
      			Vac = Vbc = Vab = 0;
                Vag = Vbg = Vcg = Vs;
                Vsg = (3*Vs-ea-eb-ec)/3;
      		}
      		else //pwm freewheeling over
      		{
      			Vab = (-0.5)*(2*eb-ea-ec);
      			Vac = 0;
      			Vbc = (-1)*Vab;
                Vag = Vcg = Vs;
      			Vsg = Vs-(ea+ec)/2;
                Vbg = Vsg+eb;
      		}
      	}
      	
      	else //commutation freewheeling over
      	{
      	        if(ic>=delta)  //pwm freewheeling
      	        {
      	        	Vab = Vac = 0.5*(2*ea-eb-ec);
      	        	Vbc = 0;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
五月天激情综合网| 91麻豆精品国产无毒不卡在线观看| 国产精品成人一区二区艾草| 成人黄色777网| 国产精品色婷婷久久58| 94-欧美-setu| 亚洲香肠在线观看| 日韩一区二区影院| 国产一区二区三区av电影| 国产精品久久久久国产精品日日 | 青青国产91久久久久久| 日韩精品一区二区三区四区视频| 国产一区二区三区黄视频| 中文字幕成人av| 99久久精品情趣| 亚洲一区二区精品久久av| 欧美一区二区三区不卡| 精品一区二区三区免费| 国产精品久久久久国产精品日日| 欧美午夜在线一二页| 免费在线成人网| 中文字幕av一区二区三区高 | 成人av网站在线观看| 一区二区三区在线视频免费| 91精品国产色综合久久| 国产精品一区二区在线观看不卡 | 亚洲曰韩产成在线| 日韩美女视频在线| 99久久精品国产一区二区三区| 一区二区三区欧美久久| 日韩欧美国产高清| 2017欧美狠狠色| 天堂久久久久va久久久久| 欧美成人三级电影在线| 99v久久综合狠狠综合久久| 亚洲国产日韩在线一区模特| 337p粉嫩大胆色噜噜噜噜亚洲| av不卡免费在线观看| 亚洲国产精品精华液网站| 欧美精品一区二区不卡| 色美美综合视频| 狠狠v欧美v日韩v亚洲ⅴ| 亚洲激情自拍偷拍| 日韩三级.com| 不卡一区二区三区四区| 日精品一区二区三区| 国产精品久99| 91精品国产综合久久福利软件| 福利一区二区在线| 视频一区在线视频| 亚洲天堂久久久久久久| 精品美女在线观看| 欧美性xxxxx极品少妇| 国产精品一区二区无线| 天天操天天色综合| 最新不卡av在线| 欧美精品一区二区三区很污很色的| 91国产免费观看| 国产精品1024久久| 日韩高清国产一区在线| 最近中文字幕一区二区三区| 精品成人私密视频| 9191精品国产综合久久久久久| 不卡高清视频专区| 国产一区日韩二区欧美三区| 视频精品一区二区| 亚洲精品视频在线看| 日本一区免费视频| 日韩免费高清av| 欧美日韩成人激情| 色婷婷综合久久久久中文一区二区| 91精品国产91久久久久久一区二区 | 三级不卡在线观看| 亚洲日本中文字幕区| 久久伊99综合婷婷久久伊| 欧美日韩高清一区二区不卡 | 成人不卡免费av| 国内成+人亚洲+欧美+综合在线| 亚洲成av人影院| 亚洲精品日产精品乱码不卡| 中文av一区特黄| www成人在线观看| 日韩一级片在线播放| 欧美日韩精品系列| 在线免费视频一区二区| av综合在线播放| 国产91精品久久久久久久网曝门| 久久国产精品无码网站| 日韩成人精品视频| 午夜精品久久久久久久蜜桃app| 亚洲女同女同女同女同女同69| 国产欧美日韩一区二区三区在线观看| 日韩天堂在线观看| 欧美福利电影网| 欧美男女性生活在线直播观看| 在线观看三级视频欧美| 91一区一区三区| 国产高清精品在线| 国产高清不卡一区二区| 国产精品亚洲午夜一区二区三区| 蓝色福利精品导航| 美日韩一区二区三区| 日本vs亚洲vs韩国一区三区二区| 午夜在线成人av| 日韩精品一级二级| 日本女优在线视频一区二区| 日韩高清在线不卡| 91麻豆福利精品推荐| 美国av一区二区| 美女一区二区久久| 激情综合色丁香一区二区| 麻豆免费看一区二区三区| 日日夜夜免费精品| 美女被吸乳得到大胸91| 精品一区二区三区免费观看| 国产在线不卡一区| 国产成人在线看| 成人aaaa免费全部观看| 色综合天天综合网天天看片| 日本精品免费观看高清观看| 欧美中文字幕不卡| 欧美丰满高潮xxxx喷水动漫| 日韩一级免费观看| 精品粉嫩aⅴ一区二区三区四区 | 精品入口麻豆88视频| 精品久久久影院| 国产欧美日韩在线视频| 国产精品久久久久久久久免费丝袜| 国产精品久久久久久久久免费丝袜 | 91精品国产综合久久久久久 | 日韩精品一区二区三区视频播放 | 亚洲国产精品二十页| 中文字幕一区二区三中文字幕 | 亚洲三级免费观看| 亚洲无线码一区二区三区| 天堂一区二区在线| 麻豆精品在线观看| 国产成人自拍在线| 色综合中文字幕| 欧美mv日韩mv亚洲| 欧美成人综合网站| 国产天堂亚洲国产碰碰| 亚洲丝袜另类动漫二区| 亚洲成人精品一区| 久久99国产精品免费| 成人免费av资源| 在线视频亚洲一区| 日韩欧美不卡在线观看视频| 久久老女人爱爱| 亚洲美女在线国产| 奇米影视一区二区三区小说| 国产东北露脸精品视频| av在线不卡免费看| 欧美日韩一区二区三区高清| 欧美xxx久久| 中文字幕日韩欧美一区二区三区| 一区二区三区在线免费视频| 视频一区国产视频| 成人久久视频在线观看| 欧美日韩视频第一区| 2021久久国产精品不只是精品| 亚洲丝袜美腿综合| 久久成人久久鬼色| 91日韩精品一区| 日韩免费看的电影| 亚洲另类在线视频| 久久成人综合网| 色先锋久久av资源部| 日韩色在线观看| **欧美大码日韩| 久久精品久久综合| 91视频免费看| 91麻豆精品国产自产在线| 亚洲欧洲日韩av| 久久国产精品色| 色噜噜久久综合| 久久品道一品道久久精品| 亚洲一区二区综合| 国产成人免费9x9x人网站视频| 欧洲国内综合视频| 国产无人区一区二区三区| 午夜国产精品影院在线观看| 成人午夜视频在线| 日韩视频一区在线观看| 伊人色综合久久天天人手人婷| 国产一区二区三区免费看| 欧美日韩精品一二三区| 日韩码欧中文字| 国产精品伊人色| 精品国产成人系列| 亚洲mv大片欧洲mv大片精品| 激情五月播播久久久精品| 欧美精品久久一区| 亚洲六月丁香色婷婷综合久久| 国产在线精品一区二区不卡了| 欧美日韩三级在线| 亚洲日本护士毛茸茸| 国产成人免费av在线| 欧美v日韩v国产v| 天堂久久一区二区三区|