Giter Club home page Giter Club logo

mesin-cuci-otimatis's Introduction

Studi kasus: Mesin Cuci Otomatis Menggunakan Fuzzy Tsukamoto

Link Pembelajaran Fuzzy Metode Tsukamoto Fuzzy TSUKAMOTO | Sistem Inferensi Fuzzy | Contoh Studi Kasus dan Langkah Penyelesaiannya By Dr. Achmad Solichin Youtube

Requirement

Latar belakang

  1. Kecepatan Mesin Kecepatan mesin minimal adalah 500rpm lambat dan kecepatan mesin maksimal adalah 1200rpm cepat

  2. Banyaknya pakaian Dinyatakan dalam range 0-100 :

  • nilai <= 40 termasuk sedikit
  • nilai >= 80 termasuk banyak
  1. Tingkat Kekotoran Dinyatakan dalam range 0-100 :
  • nilai 0 - 40 adalah rendah
  • nilai 50 adalah sedang
  • nilai 60 - 100 adalah tinggi

Rule Fuzzy

Rule dibawah ini berasal dari pakar

  1. {R1} Jika pakaian sedikit dan kekotoran rendah, maka kecepatan mesin lambat.
  2. {R2} Jika pakaian sedikit dan kekotoran sedang, maka kecepatan mesin lambat.
  3. {R3} Jika pakaian sedikit dan kekotoran tinggi, maka kecepatan mesin cepat.
  4. {R4} Jika pakaian banyak dan kekotoran rendah, maka kecepatan mesin lambat.
  5. {R5} Jika pakaian banyak dan kekotoran sedang, maka kecepatan mesin cepat.
  6. {R6} Jika pakaian banyak dan kekotoran tinggi, maka kecepatan mesin cepat.

Fungsi Keanggotaan

Variable banyak pakaian

  1. sedikit
  if x >= 80 result = 0
  if 40 <= x <= 80 result = (80 - x)/(80 - 40)
  if x <= 40 result = 1
  1. Banyak
  if x <= 40 result = 0
  if 40 <= x <= 80 result = (x - 40)/(80 - 40)
  if x >= 80  result = 1

Variable tingkat kekotoran

  1. rendah
  if x >= 50 result = 0
  if 40 <= x <= 50 result = (50 - x)/(50 - 40)
  if x <= 40 result = 1
  1. sedang
  if x <= 40 result = 0
  if x >= 60 result = 0
  if 40 <= x <= 50 result = (x - 40)/(50 - 40)
  if 50 <= x <= 60 result = (60 - x)/(60 - 50)
  1. tinggi
  if x <= 50 result = 0
  if 50 <= x <= 60 result = (x - 50)/(60 - 50)
  if x >= 60 result = 1

Variable kecepatan mesin

  1. lambat
  if z >= 1200 result = 0
  if 500 <= z <= 1200 result = (1200 - x)/(1200 - 500)
  if z <= 500 result = 1
  1. cepat
  if z <= 500 result = 0
  if 500 <= z <= 1200 result = (z - 500)/(1200 - 500)
  if z >= 1200 result = 1

mesin-cuci-otimatis's People

Contributors

pratamaizzat avatar

Watchers

 avatar  avatar

Forkers

fithrotulia

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.