WOW !! MUCH LOVE ! SO WORLD PEACE !
Fond bitcoin pour l'amélioration du site: 1memzGeKS7CB3ECNkzSn2qHwxU6NZoJ8o
  Dogecoin (tips/pourboires): DCLoo9Dd4qECqpMLurdgGnaoqbftj16Nvp


Home | Publier un mémoire | Une page au hasard

 > 

Etude conception et realisation d'un systeme de gestion de l'énergie dans le batiment


par Enoch Yanick ADEBIAYE
Université d'Abomey Calavi - Master en energie renouvelable et systeme energetique 2020
  

précédent sommaire suivant

Bitcoin is a swarm of cyber hornets serving the goddess of wisdom, feeding on the fire of truth, exponentially growing ever smarter, faster, and stronger behind a wall of encrypted energy

Annexe

TABLEAU 3.5 - Consommation d'électricité par habitant dans le monde en 2018 [25] (suite)

Pays

Consommation d'électricité (KWh/habitant)

Cuba

1,454

Saint-Vincent-et-les- Grenadines

1,434

Pérou

1,424

Colombie

1,417

Dominique

1,399

Equateur

1,375

Algérie

1,343

Tunisie

1,326

Swaziland

1,316

Moldavie

1,28

Belize

1,174

Guyana

1,067

Jamaïque

1,012

Gabon

977

Salvador

958

Iraq

957

Iles Fidji

918

Inde

877

Maroc

823

Indonésie

812

Honduras

786

Laos

756

Philippines

739

Syrie

728

Bolivie

689

Zambie

671

Cap-Vert

646

Samoa

610

Guatemala

609

Nicaragua

590

Guinée équatoriale

583

Sri Lanka

561

Corée du Nord

547

Zimbabwe

507

Papouasie-Nouvelle- Guinée

461

Tonga

455

Pakistan

444

Lesotho

432

Djibouti

427

Mozambique

425

Yanick ADEBIAYE, Mémoire de Master 60

Annexe

TABLEAU 3.6 - Consommation d'électricité par habitant dans le monde en 2018 [25] (suite)

Pays

Consommation d'électricité (KWh/habitant)

Cambodge

356

Bangladesh

336

Ghana

333

Sao Tomé-et-Principe

300

Angola

298

Soudan

281

Mauritanie

276

Birmanie

268

Cameroun

250

Kiribati

247

Cote d'ivoire

238

Sénégal

233

Vanuatu

203

Congo

180

Népal

168

Kenya

162

Mali

162

Afghanistan

158

Togo

154

Iles Salomon

145

Gambie

135

Yemen

128

Nigeria

122

Tanzanie

102

Bénin

101

République démocra-

tique du Congo

87

Ethiopie

84

Burkina Faso

79

Ouganda

76

Malawi

67

Madagascar

62

Erythrée

59

Liberia

58

Niger

54

Comores

48

Guinée

47

Sierra Leone

44

Rwanda

43

Haïti

38

Burundi

32

Yanick ADEBIAYE, Mémoire de Master 61

Annexe

TABLEAU 3.7 - Consommation d'électricité par habitant dans le monde en 2018 [25] (suite et fin)

Pays

Consommation d'électricité (KWh/habitant)

Somalie

28

République centrafri-

caine

28

Guinée-Bissau

20

Tchad

13

62

Code source sous Arduino

Egsrtyhrey

#include <LiquidCrystal.h>

#include <Wire.h> #include <String.h>

const int rs = 7, en = 6, d4 = 5, d5 = 4, d6 = 3, d7 = 2; LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

const int BoutonR=0, LDR=1, CapteurSource=2;

const int LampeExt=13, Inverseur1=12, Inverseur2=11, Lampe=10, Prise=9, Clim=8;

int ValeurAnalog=0,ValeurJour=0,Valeur1=0, Valeur2=0, RefLDR=140, RefLDR2=0, RefCap-teurSource=210, Calcul, Minimum=0, Maximum=0, R1=320, R2=475, R3=560, R4=608,R5=644, R6=672;

int Menu=0, EtatBouton=0, EtatLDR=0, EtatCapteurSource=0, EtatEcran=0,EtatLampeExt=0, EtatLampe=0, EtatPrise=0, EtatClim=0, EtatInterfaceGSM=0;

long TpsBouton=0, TpsLDR=0,TpsCapteurSource=0,TpsEcran=0, Decompte=0, TpsInter-faceGSM=0,TpsCall=0;

int haL=17, heL=8, haP=17,heP=8, haC=17, heC=8, maL=0, meL=0, maP=0,meP=0, maC=0, meC=0,H=12,M=15,Ss=0, Reste=0;

char Mode='A' ;

String Source="S1", Text="", Donnee="", TextGSM="";

int ModeGSM=0, SmsEntrant=0, EnableRCall=0, EnableCall=0,EnableSMS=0;

void setup()

Annexe

{

Serial.begin(9600); lcd.begin(16, 2);

pinMode(LampeExt,OUTPUT) ; pinMode(Inverseur1,OUTPUT);

pinMode(Inverseur2,OUTPUT);

digitalWrite(LampeExt,HIGH) ; digitalWrite(Inverseur1,HIGH);

digitalWrite(Inverseur2,HIGH);

pinMode(Lampe,OUTPUT); pinMode(Prise,OUTPUT);

pinMode(Clim,OUTPUT);

digitalWrite(Lampe,HIGH) ; digitalWrite(Prise,HIGH);

digitalWrite(Clim,HIGH);

lcd.clear() ; lcd.setCursor(0,0) ; lcd.print("Etude Conception") ; lcd.setCursor(1,1); lcd.print("Et Realisation"); delay(3000);

lcd.clear() ; lcd.setCursor(2,0) ; lcd.print("D'un SGIEB") ; lcd.setCursor(3,1); lcd.print("Master E-R"); delay(3000);

lcd.clear() ; lcd.setCursor(2,0) ; lcd.print("Realiser Et") ; lcd.setCursor(0,1); lcd.print("Presenter Par :"); delay(3000);

lcd.clear() ; lcd.setCursor(2,0) ; lcd.print("Etudiant :") ; lcd.setCursor(0,1); lcd.print("Yanick ADEBIAYE"); delay(3000);

lcd.clear(); lcd.setCursor(1,0); lcd.print("Superviseur:"); lcd.setCursor(2,1); lcd.print("C. AHOUANNOU"); delay(3000);

lcd.clear() ; lcd.setCursor(2,0) ; lcd.print("Maitre-Conf") ; lcd.setCursor(5,1); lcd.print("CAMES"); delay(3000);

lcd.clear() ; lcd.setCursor(3,0) ; lcd.print("Demarrage") ; lcd.setCursor(3,1) ; lcd.print("Systeme..."); delay(3000);

Decompte=millis();

}

void loop()

{

if(EtatInterfaceGSM==0)

{

InterfaceGSM(); EtatInterfaceGSM=1 ; TpsInterfaceGSM=millis();

}

Yanick ADEBIAYE, Mémoire de Master 63

Yanick ADEBIAYE, Mémoire de Master 64

précédent sommaire suivant






Bitcoin is a swarm of cyber hornets serving the goddess of wisdom, feeding on the fire of truth, exponentially growing ever smarter, faster, and stronger behind a wall of encrypted energy








"Le doute est le commencement de la sagesse"   Aristote