⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parameter.h

📁 F2812感应电机矢量控制程序
💻 H
字号:
/* ==============================================================================
System Name:  ACI33

File Name:	PARAMETER.H

Description:	Parameters file for the Sensored Indirect Field
          	    Orientation Control for a Three Phase AC Induction Motor. 

Originator:		Digital control systems Group - Texas Instruments

Note: In this software, the default inverter is supposed to be DMC1500 board.
=====================================================================================
 History:
-------------------------------------------------------------------------------------
 04-15-2005	Version 3.20
=================================================================================  */

#ifndef PARAMETER_H
#define PARAMETER_H

#include "target.h"

/*-------------------------------------------------------------------------------
Next, definitions used in main file.
-------------------------------------------------------------------------------*/
#ifndef TRUE
#define FALSE 0
#define TRUE  1
#endif

#define PI 3.14159265358979

// Define the system frequency (MHz)

#if (DSP_TARGET==F2812)
#define SYSTEM_FREQUENCY 150
#endif

// Define the ISR frequency (kHz)
#define ISR_FREQUENCY 10

// This machine parameters are based on 1/4-hp Dayton induction motor
// Define the Induction motor parameters
#define RS 		0.16939                	// Stator resistance (ohm) 
#define RR   	0.27433                 // Rotor resistance (ohm) 
#define LS   	0.0276496        		// Stator inductance (H) 
#define LR   	0.0276496    			// Rotor inductance (H) 	
#define LM   	0.0266158    			// Magnatizing inductance (H)
#define P    	4						// Number of poles

// Define the base quantites
#define BASE_VOLTAGE    282.8           // Base peak phase voltage (volt)
#define BASE_CURRENT    50           // Base peak phase current (amp)
#define BASE_TORQUE     76             // Base torque (N.m)
#define BASE_FLUX       0.6             // Base flux linkage (volt.sec/rad)
#define BASE_FREQ      	50              // Base electrical frequency (Hz)
  
#endif  // end of PARAMETER.H definition

//===========================================================================
// No more.
//===========================================================================

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -