/* 
 *  Copyright 2004 by Soos, Antal 
 *  All rights reserved. Property of Soos, Antal. 
 *  Restricted rights to use, duplicate or disclose this code are 
 *  granted through contract.   
 */ 
/***************************************************************************/ 
/*                                                                         */ 
/*     AVR_Exciter . h	                                                   */ 
/*                                                                         */ 
/*     AVR Exciter from IEEE Standard Algorithm inplementation.            */ 
/*                                                                         */ 
/*                                                                         */ 
/***************************************************************************/ 
//  DSP 1 <=> TMS320C6711
#ifndef _AVR_EXCITER_H_
#define  _AVR_EXCITER_H_
	      
#include <math.h>   
#include "global_var.h"
    
float AVR_Exciter(float Upss);  // real time AVR calculations 
void init_AVR_Exciter(void);   //Initialization of the AVR paramethers
float adjust_Vref(float Vr);  // Reference voltage manipulations
void init_AVR_states(void);

#endif
