Skip to main content

Fuzzy Logic - Applications

We will discuss the fields where the concepts of Fuzzy Logic are extensively applied.

Aerospace

In aerospace, fuzzy logic is used in the following areas −

  • Altitude control of spacecraft
  • Satellite altitude control
  • Flow and mixture regulation in aircraft deicing vehicles

Automotive

In automotive, fuzzy logic is used in the following areas −

  • Trainable fuzzy systems for idle speed control
  • Shift scheduling method for automatic transmission
  • Intelligent highway systems
  • Traffic control
  • Improving efficiency of automatic transmissions

Business

In business, fuzzy logic is used in the following areas −

  • Decision-making support systems
  • Personnel evaluation in a large company

Defense

In defense, fuzzy logic is used in the following areas −

  • Underwater target recognition
  • Automatic target recognition of thermal infrared images
  • Naval decision support aids
  • Control of a hypervelocity interceptor
  • Fuzzy set modeling of NATO decision making

Electronics

In electronics, fuzzy logic is used in the following areas −

  • Control of automatic exposure in video cameras
  • Humidity in a clean room
  • Air conditioning systems
  • Washing machine timing
  • Microwave ovens
  • Vacuum cleaners

Finance

In the finance field, fuzzy logic is used in the following areas −

  • Banknote transfer control
  • Fund management
  • Stock market predictions

Industrial Sector

In industrial, fuzzy logic is used in following areas −

  • Cement kiln controls heat exchanger control
  • Activated sludge wastewater treatment process control
  • Water purification plant control
  • Quantitative pattern analysis for industrial quality assurance
  • Control of constraint satisfaction problems in structural design
  • Control of water purification plants

Manufacturing

In the manufacturing industry, fuzzy logic is used in following areas −

  • Optimization of cheese production
  • Optimization of milk production

Marine

In the marine field, fuzzy logic is used in the following areas −

  • Autopilot for ships
  • Optimal route selection
  • Control of autonomous underwater vehicles
  • Ship steering

Medical

In the medical field, fuzzy logic is used in the following areas −

  • Medical diagnostic support system
  • Control of arterial pressure during anesthesia
  • Multivariable control of anesthesia
  • Modeling of neuropathological findings in Alzheimer's patients
  • Radiology diagnoses
  • Fuzzy inference diagnosis of diabetes and prostate cancer

Securities

In securities, fuzzy logic is used in following areas −

  • Decision systems for securities trading
  • Various security appliances

Transportation

In transportation, fuzzy logic is used in the following areas −

  • Automatic underground train operation
  • Train schedule control
  • Railway acceleration
  • Braking and stopping

Pattern Recognition and Classification

In Pattern Recognition and Classification, fuzzy logic is used in the following areas −

  • Fuzzy logic based speech recognition
  • Fuzzy logic based
  • Handwriting recognition
  • Fuzzy logic based facial characteristic analysis
  • Command analysis
  • Fuzzy image search

Psychology

In Psychology, fuzzy logic is used in following areas −

  • Fuzzy logic based analysis of human behavior
  • Criminal investigation and prevention based on fuzzy logic reasoning

Anurag Rana

Comments

Popular posts from this blog

JAVA Scrollbar, MenuItem and Menu, PopupMenu

ava AWT Scrollbar The  object  of Scrollbar class is used to add horizontal and vertical scrollbar. Scrollbar is a  GUI  component allows us to see invisible number of rows and columns. AWT Scrollbar class declaration public   class  Scrollbar  extends  Component  implements  Adjustable, Accessible   Java AWT Scrollbar Example import  java.awt.*;   class  ScrollbarExample{   ScrollbarExample(){               Frame f=  new  Frame( "Scrollbar Example" );               Scrollbar s= new  Scrollbar();               s.setBounds( 100 , 100 ,  50 , 100 );               f.add(s);               f.setSize( 400 , 400 );               f.setLayout( null );               f.setVisible( true );   }   public   static   void  main(String args[]){           new  ScrollbarExample();   }   }   Output: Java AWT Scrollbar Example with AdjustmentListener import  java.awt.*;   import  java.awt.event.*;   class  ScrollbarExample{        ScrollbarExample(){               Frame f=  new  Frame( "Scro

Difference between net platform and dot net framework...

Difference between net platform and dot net framework... .net platform supports programming languages that are .net compatible. It is the platform using which we can build and develop the applications. .net framework is the engine inside the .net platform which actually compiles and produces the executable code. .net framework contains CLR(Common Language Runtime) and FCL(Framework Class Library) using which it produces the platform independent codes. What is the .NET Framework? The Microsoft .NET Framework is a platform for building, deploying, and running Web Services and applications. It provides a highly productive, standards-based, multi-language environment for integrating existing investments with next-generation applications and services as well as the agility to solve the challenges of deployment and operation of Internet-scale applications. The .NET Framework consists of three main parts: the common language runtime, a hierarchical set of unified class librari

C++ this Pointer, static, struct and Enumeration

C++ this Pointer In C++ programming,  this  is a keyword that refers to the current instance of the class. There can be 3 main usage of this keyword in C++. It can be used  to pass current object as a parameter to another method. It can be used  to refer current class instance variable. It can be used  to declare indexers. C++ this Pointer Example Let's see the example of this keyword in C++ that refers to the fields of current class. #include <iostream>    using   namespace  std;   class  Employee {       public :           int  id;  //data member (also instance variable)               string name;  //data member(also instance variable)            float  salary;          Employee( int  id, string name,  float  salary)             {                   this ->id = id;                  this ->name = name;                  this ->salary = salary;            }             void  display()             {                 cout<<id<< "  " <<name<&