/** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ /** * @file * Pathologic text filter for Drupal. * * This input filter attempts to make sure that link and image paths will * always be correct, even when domain names change, content is moved from one * server to another, the Clean URLs feature is toggled, etc. */ /** * Implements hook_filter_info(). */ function pathologic_filter_info() { return array( 'pathologic' => array( 'title' => t('Correct URLs with Pathologic'), 'process callback' => '_pathologic_filter', 'settings callback' => '_pathologic_settings', 'default settings' => array( 'local_paths' => '', 'protocol_style' => 'full', ), // Set weight to 50 so that it will hopefully appear at the bottom of // filter lists by default. 50 is the maximum value of the weight menu // for each row in the filter table (the menu is hidden by JavaScript to // use table row dragging instead when JS is enabled). 'weight' => 50, ) ); } /** * Settings callback for Pathologic. */ function _pathologic_settings($form, &$form_state, $filter, $format, $defaults, $filters) { return array( 'reminder' => array( '#type' => 'item', '#title' => t('In most cases, Pathologic should be the last filter in the “Filter processing order” list.'), '#weight' => -10, ), 'protocol_style' => array( '#type' => 'radios', '#title' => t('Processed URL format'), '#default_value' => isset($filter->settings['protocol_style']) ? $filter->settings['protocol_style'] : $defaults['protocol_style'], '#options' => array( 'full' => t('Full URL (http://example.com/foo/bar)'), 'proto-rel' => t('Protocol relative URL (//example.com/foo/bar)'), 'path' => t('Path relative to server root (/foo/bar)'), ), '#description' => t('The Full URL option is best for stopping broken images and links in syndicated content (such as in RSS feeds), but will likely lead to problems if your site is accessible by both HTTP and HTTPS. Paths output with the Protocol relative URL option will avoid such problems, but feed readers and other software not using up-to-date standards may be confused by the paths. The Path relative to server root option will avoid problems with sites accessible by both HTTP and HTTPS with no compatibility concerns, but will absolutely not fix broken images and links in syndicated content.'), '#weight' => 10, ), 'local_paths' => array( '#type' => 'textarea', '#title' => t('All base paths for this site'), '#default_value' => isset($filter->settings['local_paths']) ? $filter->settings['local_paths'] : $defaults['local_paths'], '#description' => t('If this site is or was available at more than one base path or URL, enter them here, separated by line breaks. For example, if this site is live at http://example.com/ but has a staging version at http://dev.example.org/staging/, you would enter both those URLs here. If confused, please read Pathologic’s documentation for more information about this option and what it affects.', array('!docs' => 'http://drupal.org/node/257026')), '#weight' => 20, ), ); } /** * Pathologic filter callback. * * Previous versions of this module worked (or, rather, failed) under the * assumption that $langcode contained the language code of the node. Sadly, * this isn't the case. * @see http://drupal.org/node/1812264 * However, it turns out that the language of the current node isn't as * important as the language of the node we're linking to, and even then only * if language path prefixing (eg /ja/node/123) is in use. REMEMBER THIS IN THE * FUTURE, ALBRIGHT. * * The below code uses the @ operator before parse_url() calls because in PHP * 5.3.2 and earlier, parse_url() causes a warning of parsing fails. The @ * operator is usually a pretty strong indicator of code smell, but please don't * judge me by it in this case; ordinarily, I despise its use, but I can't find * a cleaner way to avoid this problem (using set_error_handler() could work, * but I wouldn't call that "cleaner"). Fortunately, Drupal 8 will require at * least PHP 5.3.5, so this mess doesn't have to spread into the D8 branch of * Pathologic. * @see https://drupal.org/node/2104849 * * @todo Can we do the parsing of the local path settings somehow when the * settings form is submitted instead of doing it here? */ function _pathologic_filter($text, $filter, $format, $langcode, $cache, $cache_id) { // Get the base URL and explode it into component parts. We add these parts // to the exploded local paths settings later. global $base_url; $base_url_parts = @parse_url($base_url . '/'); // Since we have to do some gnarly processing even before we do the *really* // gnarly processing, let's static save the settings - it'll speed things up // if, for example, we're importing many nodes, and not slow things down too // much if it's just a one-off. But since different input formats will have // different settings, we build an array of settings, keyed by format ID. $cached_settings = &drupal_static(__FUNCTION__, array()); if (!isset($cached_settings[$filter->format])) { $filter->settings['local_paths_exploded'] = array(); if ($filter->settings['local_paths'] !== '') { // Build an array of the exploded local paths for this format's settings. // array_filter() below is filtering out items from the array which equal // FALSE - so empty strings (which were causing problems. // @see http://drupal.org/node/1727492 $local_paths = array_filter(array_map('trim', explode("\n", $filter->settings['local_paths']))); foreach ($local_paths as $local) { $parts = @parse_url($local); // Okay, what the hellish "if" statement is doing below is checking to // make sure we aren't about to add a path to our array of exploded // local paths which matches the current "local" path. We consider it // not a match, if… // @todo: This is pretty horrible. Can this be simplified? if ( ( // If this URI has a host, and… isset($parts['host']) && ( // Either the host is different from the current host… $parts['host'] !== $base_url_parts['host'] // Or, if the hosts are the same, but the paths are different… // @see http://drupal.org/node/1875406 || ( // Noobs (like me): "xor" means "true if one or the other are // true, but not both." (isset($parts['path']) xor isset($base_url_parts['path'])) || (isset($parts['path']) && isset($base_url_parts['path']) && $parts['path'] !== $base_url_parts['path']) ) ) ) || // Or… ( // The URI doesn't have a host… !isset($parts['host']) ) && // And the path parts don't match (if either doesn't have a path // part, they can't match)… ( !isset($parts['path']) || !isset($base_url_parts['path']) || $parts['path'] !== $base_url_parts['path'] ) ) { // Add it to the list. $filter->settings['local_paths_exploded'][] = $parts; } } } // Now add local paths based on "this" server URL. $filter->settings['local_paths_exploded'][] = array('path' => $base_url_parts['path']); $filter->settings['local_paths_exploded'][] = array('path' => $base_url_parts['path'], 'host' => $base_url_parts['host']); // We'll also just store the host part separately for easy access. $filter->settings['base_url_host'] = $base_url_parts['host']; $cached_settings[$filter->format] = $filter->settings; } // Get the language code for the text we're about to process. $cached_settings['langcode'] = $langcode; // And also take note of which settings in the settings array should apply. $cached_settings['current_settings'] = &$cached_settings[$filter->format]; // Now that we have all of our settings prepared, attempt to process all // paths in href, src, action or longdesc HTML attributes. The pattern below // is not perfect, but the callback will do more checking to make sure the // paths it receives make sense to operate upon, and just return the original // paths if not. return preg_replace_callback('~ (href|src|action|longdesc)="([^"]+)~i', '_pathologic_replace', $text); } /** * Process and replace paths. preg_replace_callback() callback. */ function _pathologic_replace($matches) { // Get the base path. global $base_path; // Get the settings for the filter. Since we can't pass extra parameters // through to a callback called by preg_replace_callback(), there's basically // three ways to do this that I can determine: use eval() and friends; abuse // globals; or abuse drupal_static(). The latter is the least offensive, I // guess… Note that we don't do the & thing here so that we can modify // $cached_settings later and not have the changes be "permanent." $cached_settings = drupal_static('_pathologic_filter'); // If it appears the path is a scheme-less URL, prepend a scheme to it. // parse_url() cannot properly parse scheme-less URLs. Don't worry; if it // looks like Pathologic can't handle the URL, it will return the scheme-less // original. // @see https://drupal.org/node/1617944 // @see https://drupal.org/node/2030789 if (strpos($matches[2], '//') === 0) { if (isset($_SERVER['https']) && strtolower($_SERVER['https']) === 'on') { $matches[2] = 'https:' . $matches[2]; } else { $matches[2] = 'http:' . $matches[2]; } } // Now parse the URL after reverting HTML character encoding. // @see http://drupal.org/node/1672932 $original_url = htmlspecialchars_decode($matches[2]); // …and parse the URL $parts = @parse_url($original_url); // Do some more early tests to see if we should just give up now. if ( // If parse_url() failed, give up. $parts === FALSE || ( // If there's a scheme part and it doesn't look useful, bail out. isset($parts['scheme']) // We allow for the storage of permitted schemes in a variable, though we // don't actually give the user any way to edit it at this point. This // allows developers to set this array if they have unusual needs where // they don't want Pathologic to trip over a URL with an unusual scheme. // @see http://drupal.org/node/1834308 // "files" and "internal" are for Path Filter compatibility. && !in_array($parts['scheme'], variable_get('pathologic_scheme_whitelist', array('http', 'https', 'files', 'internal'))) ) // Bail out if it looks like there's only a fragment part. || (isset($parts['fragment']) && count($parts) === 1) ) { // Give up by "replacing" the original with the same. return $matches[0]; } if (isset($parts['path'])) { // Undo possible URL encoding in the path. // @see http://drupal.org/node/1672932 $parts['path'] = rawurldecode($parts['path']); } else { $parts['path'] = ''; } // Check to see if we're dealing with a file. // @todo Should we still try to do path correction on these files too? if (isset($parts['scheme']) && $parts['scheme'] === 'files') { // Path Filter "files:" support. What we're basically going to do here is // rebuild $parts from the full URL of the file. $new_parts = @parse_url(file_create_url(file_default_scheme() . '://' . $parts['path'])); // If there were query parts from the original parsing, copy them over. if (!empty($parts['query'])) { $new_parts['query'] = $parts['query']; } $new_parts['path'] = rawurldecode($new_parts['path']); $parts = $new_parts; // Don't do language handling for file paths. $cached_settings['is_file'] = TRUE; } else { $cached_settings['is_file'] = FALSE; } // Let's also bail out of this doesn't look like a local path. $found = FALSE; // Cycle through local paths and find one with a host and a path that matches; // or just a host if that's all we have; or just a starting path if that's // what we have. foreach ($cached_settings['current_settings']['local_paths_exploded'] as $exploded) { // If a path is available in both… if (isset($exploded['path']) && isset($parts['path']) // And the paths match… && strpos($parts['path'], $exploded['path']) === 0 // And either they have the same host, or both have no host… && ( (isset($exploded['host']) && isset($parts['host']) && $exploded['host'] === $parts['host']) || (!isset($exploded['host']) && !isset($parts['host'])) ) ) { // Remove the shared path from the path. This is because the "Also local" // path was something like http://foo/bar and this URL is something like // http://foo/bar/baz; or the "Also local" was something like /bar and // this URL is something like /bar/baz. And we only care about the /baz // part. $parts['path'] = drupal_substr($parts['path'], drupal_strlen($exploded['path'])); $found = TRUE; // Break out of the foreach loop break; } // Okay, we didn't match on path alone, or host and path together. Can we // match on just host? Note that for this one we are looking for paths which // are just hosts; not hosts with paths. elseif ((isset($parts['host']) && !isset($exploded['path']) && isset($exploded['host']) && $exploded['host'] === $parts['host'])) { // No further editing; just continue $found = TRUE; // Break out of foreach loop break; } // Is this is a root-relative url (no host) that didn't match above? // Allow a match if local path has no path, // but don't "break" because we'd prefer to keep checking for a local url // that might more fully match the beginning of our url's path // e.g.: if our url is /foo/bar we'll mark this as a match for // http://example.com but want to keep searching and would prefer a match // to http://example.com/foo if that's configured as a local path elseif (!isset($parts['host']) && (!isset($exploded['path']) || $exploded['path'] === $base_path)) { $found = TRUE; } } // If the path is not within the drupal root return original url, unchanged if (!$found) { return $matches[0]; } // Okay, format the URL. // If there's still a slash lingering at the start of the path, chop it off. $parts['path'] = ltrim($parts['path'],'/'); // Examine the query part of the URL. Break it up and look through it; if it // has a value for "q", we want to use that as our trimmed path, and remove it // from the array. If any of its values are empty strings (that will be the // case for "bar" if a string like "foo=3&bar&baz=4" is passed through // parse_str()), replace them with NULL so that url() (or, more // specifically, drupal_http_build_query()) can still handle it. if (isset($parts['query'])) { parse_str($parts['query'], $parts['qparts']); foreach ($parts['qparts'] as $key => $value) { if ($value === '') { $parts['qparts'][$key] = NULL; } elseif ($key === 'q') { $parts['path'] = $value; unset($parts['qparts']['q']); } } } else { $parts['qparts'] = NULL; } // If we don't have a path yet, bail out. if (!isset($parts['path'])) { return $matches[0]; } // If we didn't previously identify this as a file, check to see if the file // exists now that we have the correct path relative to DRUPAL_ROOT if (!$cached_settings['is_file']) { $cached_settings['is_file'] = !empty($parts['path']) && is_file(DRUPAL_ROOT . '/'. $parts['path']); } // Okay, deal with language stuff. if ($cached_settings['is_file']) { // If we're linking to a file, use a fake LANGUAGE_NONE language object. // Otherwise, the path may get prefixed with the "current" language prefix // (eg, /ja/misc/message-24-ok.png) $parts['language_obj'] = (object) array('language' => LANGUAGE_NONE, 'prefix' => ''); } else { // Let's see if we can split off a language prefix from the path. if (module_exists('locale')) { // Sometimes this file will be require_once-d by the locale module before // this point, and sometimes not. We require_once it ourselves to be sure. require_once DRUPAL_ROOT . '/includes/language.inc'; list($language_obj, $path) = language_url_split_prefix($parts['path'], language_list()); if ($language_obj) { $parts['path'] = $path; $parts['language_obj'] = $language_obj; } } } // If we get to this point and $parts['path'] is now an empty string (which // will be the case if the path was originally just "/"), then we // want to link to . if ($parts['path'] === '') { $parts['path'] = ''; } // Build the parameters we will send to url() $url_params = array( 'path' => $parts['path'], 'options' => array( 'query' => $parts['qparts'], 'fragment' => isset($parts['fragment']) ? $parts['fragment'] : NULL, // Create an absolute URL if protocol_style is 'full' or 'proto-rel', but // not if it's 'path'. 'absolute' => $cached_settings['current_settings']['protocol_style'] !== 'path', // If we seem to have found a language for the path, pass it along to // url(). Otherwise, ignore the 'language' parameter. 'language' => isset($parts['language_obj']) ? $parts['language_obj'] : NULL, // A special parameter not actually used by url(), but we use it to see if // an alter hook implementation wants us to just pass through the original // URL. 'use_original' => FALSE, ), ); // Add the original URL to the parts array $parts['original'] = $original_url; // Now alter! // @see http://drupal.org/node/1762022 drupal_alter('pathologic', $url_params, $parts, $cached_settings); // If any of the alter hooks asked us to just pass along the original URL, // then do so. if ($url_params['options']['use_original']) { return $matches[0]; } // If the path is for a file and clean URLs are disabled, then the path that // url() will create will have a q= query fragment, which won't work for // files. To avoid that, we use this trick to temporarily turn clean URLs on. // This is horrible, but it seems to be the sanest way to do this. // @see http://drupal.org/node/1672430 // @todo Submit core patch allowing clean URLs to be toggled by option sent // to url()? if (!empty($cached_settings['is_file'])) { $cached_settings['orig_clean_url'] = !empty($GLOBALS['conf']['clean_url']); if (!$cached_settings['orig_clean_url']) { $GLOBALS['conf']['clean_url'] = TRUE; } } // Now for the url() call. Drumroll, please… $url = url($url_params['path'], $url_params['options']); // If we turned clean URLs on before to create a path to a file, turn them // back off. if ($cached_settings['is_file'] && !$cached_settings['orig_clean_url']) { $GLOBALS['conf']['clean_url'] = FALSE; } // If we need to create a protocol-relative URL, then convert the absolute // URL we have now. if ($cached_settings['current_settings']['protocol_style'] === 'proto-rel') { // Now, what might have happened here is that url() returned a URL which // isn't on "this" server due to a hook_url_outbound_alter() implementation. // We don't want to convert the URL in that case. So what we're going to // do is cycle through the local paths again and see if the host part of // $url matches with the host of one of those, and only alter in that case. $url_parts = @parse_url($url); if (!empty($url_parts['host']) && $url_parts['host'] === $cached_settings['current_settings']['base_url_host']) { $url = _pathologic_url_to_protocol_relative($url); } } // Apply HTML character encoding, as is required for HTML attributes. // @see http://drupal.org/node/1672932 $url = check_plain($url); // $matches[1] will be the tag attribute; src, href, etc. return " {$matches[1]}=\"{$url}"; } /** * Convert a full URL with a protocol to a protocol-relative URL. * * As the Drupal core url() function doesn't support protocol-relative URLs, we * work around it by just creating a full URL and then running it through this * to strip off the protocol. * * Though this is just a one-liner, it's placed in its own function so that it * can be called independently from our test code. */ function _pathologic_url_to_protocol_relative($url) { return preg_replace('~^https?://~', '//', $url); } AegeanGas | Θέρμανση εύκολα και οικονομικά
Loading

ΕΓΚΑΤΑΣΤΑΣΗ ΑΝΤΛΙΑΣ ΘΕΡΜΟΤΗΤΑΣ

Εξοικονόμηση Ενέργειας

ΦΥΣΙΚΟ ΑΕΡΙΟ

Αυτονομώ - Αναβαθμίζω οικολογικά

Επικοινωνήστε μαζί μας!

Το φυσικό αέριο είναι ο οικονομικότερος και ο πιο βολικός τρόπος για την θέρμανση της κατοικίας σας.
Μάθετε γιατί

Αυτονομία Θέρμανσης

Η αυτονομία είναι ευκολία, οικονομία και δυνατή πλέον και σε παλιές πολυκατοικίες.
Μάθετε γιατί

ΦΩΤΟΒΟΛΤΑΪΚΑ

Λύσεις Εξοικονόμησης Ενέργειας
Μάθετε περισσότερα

Ζητήστε προσφορά

Ζητήστε προσφορά

Η Εταιρεία

Συνδυάζουμε την εμπειρία και την καινοτομία

Η Ομάδα των μηχανικών μας

Πλήρως καταρτισμένοι και εκπαιδευμένοι, για αποτέλεσμα με λεπτομέρεια.

Ολοκληρωμένες Υπηρεσίες

Συστήματα παραγωγής θέρμανσης και ζεστού νερού χρήσης

Τεχνική Υποστήριξη & Service

Σας τα κάνουμε όλα απλά και εύκολα

Φωτογραφικό υλικό

Διευκόλυνση για καλύτερο αποτέλεσμα

Έργα μας

Διασφαλίζουμε την ομαλή λειτουργία των έργων μας

Συνεργάτες

Πιστοποιημένοι συνεργάτες

Πελάτες μας

Καλό αποτέλεσμα σημαίνει χαρούμενοι πελάτες

Προμηθευτές

Πιστοποιημένοι προμηθευτές

Τα Νέα μας

Διαβάστε και ενημερωθείτε από εμάς.
09 Οκτώβριος 2020
0 σχόλια
Νέο πρόγραμμα επιδότησης εγκατάστασης θέρμανσης με φυσικό αέριο
Δημοσιεύθηκε το ΦΕΚ με την απόφαση του Υπουργού Περιβάλλοντος & Ενέργειας που αφορά στην " Προκήρυξη 2ου κύκλου της Δράσης «Αντικα
...

AegeanGas | Φυσικό αέριo, θέρμανση εύκολα και οικονομικά

AegeanGas | Φυσικό αέριo, θέρμανση εύκολα και οικονομικά

Συχνές Ερωτήσεις

Τι είναι το φυσικό αέριο;

(Οι παρακάτω πληροφορίες προέρχονται από την επίσημη ενημέρωση της ΕΠΑ Φυσικό Αέριο Αττικής ΑΕ.)

 

Το φυσικό αέριο είναι ένα φυσικό προϊόν που βρίσκεται σε υπόγεια κοιτάσματα της γης και είτε συναντάται μόνο του είτε συνυπάρχει με κοιτάσματα πετρελαίου.

Είναι μίγμα υδρογονανθράκων σε αέρια κατάσταση, αποτελούμενο κυρίως από μεθάνιο (σε ποσοστό άνω του 85%), που είναι ο ελαφρύτερος υδρογονάνθρακας, είναι πολύ καθαρό, χωρίς προσμίξεις και θειούχα συστατικά.

Είναι μια «φυσική μορφή ενέργειας» που μπορεί να χρησιμοποιηθεί χωρίς ιδιαίτερη επεξεργασία και κάνει τέλεια καύση στις κατάλληλες συσκευές.

Το φυσικό αέριο αποτελεί το φιλικότερο συμβατικό καύσιμο στο περιβάλλον και στον άνθρωπο.

 

Προμήθεια φυσικού αερίου
Το φυσικό αέριο υπάρχει σε μεγάλα αποθέματα που ήδη έχει διαπιστωθεί ότι επαρκούν τουλάχιστον 100 έτη σε χώρες όπως η πρώην Σοβιετική Ένωση, το Ιράν, το Κατάρ, το Ιράκ, η Νιγηρία, η Αλγερία, οι ΗΠΑ κ.ά.
Η Ελλάδα σήμερα προμηθεύεται φυσικό αέριο από 3 διαφορετικές πηγές:

  • από τη Ρωσία (μέσω Βουλγαρίας) μέσω αγωγών σε αέρια μορφή,
  • από την Αλγερία με δεξαμενόπλοια σε υγροποιημένη μορφή (στις εγκαταστάσεις της νήσου Ρεβυθούσας, στον κόλπο των Μεγάρων) και
  • από το 2007, από το Αζερμπαϊτζάν (μέσω Τουρκίας) μέσω αγωγών σε αέρια μορφή.

 

Ιδιότητες & Σύσταση

Η σύσταση του φυσικού αερίου διαφέρει ανάλογα με την πηγή προέλευσής του.

  • Οι προδιαγραφές του φυσικού αερίου δίνονται στον παρακάτω πίνακα:
  • Μεθάνιο (CH4)Min 85%
    Αιθάνιο (C2H8)Max 8.6%
    Προπάνιο (C3H8)Max 3%
    ΒουτάνιαMax 2%
    Πεντάνια και άλλοι υδρογονάνθρακεςMax 1%
    Άζωτο (N2)Max 5%
    Διοξείδιο του άνθρακα (CO2)Max 3%

     

  • Το φυσικό αέριο είναι ελαφρύτερο από τον αέρα με σχετική πυκνότητα 0,55. Σε περίπτωση διαρροής, διαχέεται και διαφεύγει άμεσα προς την ατμόσφαιρα (σε αντίθεση με το υγραέριο που είναι βαρύτερο από τον αέρα και σε περίπτωση διαφυγής συγκεντρώνεται χαμηλά).
  • Το φυσικό αέριο είναι άοσμο, αλλά κατά τη μεταφορά του προστίθεται μια ειδική ουσία με χαρακτηριστική οσμή ώστε να ανιχνεύεται σε περίπτωση διαφυγής.
  • Τα όρια ανάφλεξης του φυσικού αερίου είναι 4,5% - 15%. Δηλαδή, η καύση δεν μπορεί να συντηρηθεί εάν η περιεκτικότητα του αέρα σε φυσικό αέριο είναι εκτός αυτών των ορίων.

 

Λόγω της σύστασής του κατά την καύση του έχει τη χαμηλότερη εκπομπή ρύπων από όλα τα συμβατικά καύσιμα. Επίσης, δεν περιέχει μονοξείδιο του άνθρακα συνεπώς δεν είναι τοξικό.

Για τα αέρια έχει οριστεί μια κατάσταση αναφοράς που καλείται “κανονική” κατάσταση (και στην οποία ανάγονται οι όγκοι τους) και η οποία είναι 0 0C για τη θερμοκρασία και 1,01325 bar για την πίεση. Ο όγκος ενός κυβικού μέτρου αερίου σε κανονική κατάσταση αποτελεί ένα “κανονικό κυβικό μέτρο” αερίου (1Nm3).

 

Θερμογόνος Δύναμη

Ανωτέρα Θερμογόνος Δύναμη (ΑΘΔ) ορίζεται η ενέργεια που εκλύεται κατά την καύση 1 Nm3 φυσικού αερίου όταν στα προϊόντα καύσης το νερό βρίσκεται σε υγρή κατάσταση.

  • Η τιμή της ΑΘΔ δεν είναι σταθερή καθώς εξαρτάται από τη σύσταση του φυσικού αερίου και υπολογίζεται κάθε μήνα από τη ΔΕΠΑ σύμφωνα με μετρήσεις που γίνονται στους σταθμούς παραλαβής του φυσικού αερίου. Μια μέση τιμή ΑΘΔ είναι 11,5 kWh/Nm3
  • Αντίστοιχα ως Κατωτέρα Θερμογόνος Δύναμη (ΚΘΔ) ορίζεται η ενέργεια που εκλύεται κατά την καύση 1 Nm3 φυσικού αερίου όταν στα προϊόντα καύσης το νερό βρίσκεται σε αέρια κατάσταση δηλαδή σε μορφή υδρατμών (οπότε έχει απορροφήσει ενέργεια) και είναι χαμηλότερη περίπου 10% από τη ΑΘΔ. Μια μέση τιμή ΚΘΔ είναι 10,4 kWh/Nm3.

 

!!! Σημαντικό: Για να μπορέσετε να εκτιμήσετε την σχετική εξοικονόμηση θεωρείστε ότι το φ/α έχει θερμογόνο δύναμη ανά Nm3 περίπου ίση με το 1lit πετρέλαιο θέρμανσης 

Τι είναι η ΕΔΑ, η ΕΠΑ, η ΔΕΠΑ, κλπ;
(Οι παρακάτω πληροφορίες προέρχονται από την επίσημη ενημέρωση της ΕΠΑ Φυσικό Αέριο Αττικής ΑΕ.)

 

• Τι είναι η ΔΕΠΑ;
Είναι η Δημόσια Επιχείρηση Αερίου η οποία εισάγει το ΦΑ στην Ελλάδα.
Η ΔΕΠΑ σήμερα έχει στην ευθύνη της την πώληση φυσικού αερίου στις Εταιρείες Παροχής Αερίου (ΕΠΑ) και την εξυπηρέτηση μεγάλων, κυρίως βιομηχανικών, καταναλωτών με ετήσια κατανάλωση άνω των 10 εκ. κυβικών μέτρων.

 

• Ποιά είναι η μετοχική σύνθεση της ΔΕΠΑ;
Στη ΔΕΠΑ συμμετέχουν κατά 65% το ΕΛΛΗΝΙΚΟ ΔΗΜΟΣΙΟ & κατά 35% τα ΕΛΛΗΝΙΚΑ ΠΕΤΡΕΛΑΙΑ.

 

• Τι ήταν η ΔΕΦΑ;
Η ΔΕΦΑ ήταν η Δημοτική Επιχείρηση Φωταερίου Αθηνών υπεύθυνη από το 1857 για τη διανομή Φωταερίου (από το 1939 είχε περιέρθει στο Δήμο Αθηνών). Το Φωταέριο παραγόταν αρχικά από κάρβουνο σε εργοστάσιο στο Γκάζι και από το 1985 από νάφθα στα διϋλιστήρια Ασπροπύργου.
Όταν δημιουργήθηκε η ΔΕΠΑ απορρόφησε την ΔΕΦΑ και το προσωπικό της το οποίο πέρασε στην ΕΔΑ (θυγατρική της ΔΕΠΑ). Σήμερα το προσωπικό αυτό με όλη την πολύτιμη εμπειρία του εργάζεται στην ΕΠΑ Αττικής.

 

• Τι είναι η ΕΔΑ;
Η ΕΔΑ είναι η Εταιρία Διανομής Αερίου (100% θυγατρική της ΔΕΠΑ) στην οποία πέρασε το προσωπικό της ΔΕΦΑ. Το κατασκευασμένο δίκτυο και οι παροχετευτικοί αγωγοί φυσικού αερίου μεταβιβάζονται από την ΕΠΑ Αττικής στην ΕΔΑ.

 

• Ποιες είναι η ΕΠΑ Θεσσαλονίκης και η ΕΠΑ Θεσσαλίας;
Η ΕΠΑ Θεσσαλονίκης και η ΕΠΑ Θεσσαλίας είναι υπεύθυνες για τη διανομή φυσικού αερίου στις αντίστοιχες περιοχές. Στις δύο αυτές ΕΠΑ η ΕΔΑ είναι κύριος μέτοχος με 51% ενώ ο ιδιώτης επενδυτής είναι η ENI S.p.A. 

Γιατί συμφέρει η χρήση φυσικού αερίου;
(Οι παρακάτω πληροφορίες προέρχονται από την επίσημη ενημέρωση της ΕΠΑ Φυσικό Αέριο Αττικής ΑΕ.)

Η χρήση του φυσικού αερίου σε όλους τους τομείς της κατανάλωσης, σε οικιακή, επαγγελματική και βιομηχανική χρήση, προσφέρει αναρίθμητα οφέλη στο χρήστη, συμβάλλοντας παράλληλα σε ένα καθαρότερο περιβάλλον και αναβαθμίζοντας την ποιότητα ζωής των πολιτών.

 

Οικονομία
Το φυσικό αέριο αποτελεί διαχρονικά την πιο οικονομική επιλογή και τη καλύτερη ενεργειακή επένδυση σε βάθος χρόνου για οικιακή και επαγγελματική χρήση προσφέροντας ανταγωνιστικά τιμολόγια ως προς τις συμβατικές μορφές ενέργειας (πετρέλαιο, ηλεκτρικό ρεύμα, υγραέριο κλπ.).

 

Ευκολία στη χρήση
Το φυσικό αέριο είναι διαθέσιμο όποτε το χρειάζεστε κάθε στιγμή μέσα από το εγκαταστημένο δίκτυο. Δεν χρειάζεται να το παραγγείλετε ή να είστε σε ετοιμότητα για την παραλαβή του. Η λειτουργία των συσκευών φυσικού αερίου είναι απλή και προσφέρει ευκολίες και άνεση στην καθημερινή σας ζωή (πχ. παροχή ζεστού νερού στη στιγμή).

 

Καθαριότητα και εξοικονόμηση χώρου
Με το φυσικό αέριο δεν απαιτείται εγκατάσταση δεξαμενής, αφού είναι διαθέσιμο μέσα από το δίκτυο διανομής, ενώ απαλλάσσεστε από τις δυσάρεστες οσμές και τα υπολείμματα του πετρελαίου.
Ακρίβεια στη μέτρηση και χρέωση μετά την κατανάλωση

Η μέτρηση της κατανάλωσης γίνεται από τις ενδείξεις του μετρητή, όπως στις περιπτώσεις της ΔΕΗ και της ΕΥΔΑΠ, ενώ πληρώνετε πάντα μόνο όσο έχετε καταναλώσει και μετά την κατανάλωσή του.

 

Μειωμένο κόστος συντήρησης συσκευών
Η καθαρή καύση του φυσικού αερίου εξασφαλίζει μειωμένο κόστος συντήρησης συσκευών και μεγαλύτερη διάρκεια ζωής.

 

Φιλικότητα προς το περιβάλλον
Το φυσικό αέριο είναι το πιο καθαρό και λιγότερο ρυπογόνο συμβατικό καύσιμο. Η καύση του παράγει λιγότερο διοξείδιο του άνθρακα, οπότε υποκαθιστώντας τα άλλα καύσιμα συμβάλλει στη μείωση του φαινομένου του θερμοκηπίου. Δεν περιέχει ενώσεις θείου που ρυπαίνουν το περιβάλλον και προκαλούν το φαινόμενο της όξινης βροχής. 

Είναι ασφαλής η χρήση φυσικού αερίου;
(Οι παρακάτω πληροφορίες προέρχονται από την επίσημη ενημέρωση της ΕΠΑ Φυσικό Αέριο Αττικής ΑΕ.)

 

Ασφάλεια από τη φύση του!

Το φυσικό αέριο είναι ένα απολύτως φυσικό προϊόν, είναι ελαφρύτερο από τον αέρα και σε περίπτωση που απελευθερωθεί στην ατμόσφαιρα απομακρύνεται άμεσα.

Είναι άοσμο αλλά προστίθεται χαρακτηριστική οσμή για την ανίχνευση πιθανής διαρροής του. Επίσης δεν είναι τοξικό, αφού δεν περιέχει μονοξείδιο του άνθρακα.

 

Ασφάλεια από τις εγκαταστάσεις

Τα έργα κατασκευής δικτύου φυσικού αερίου στην Αττική πραγματοποιούνται βάσει σύγχρονων και αυστηρών προδιαγραφών. Η λειτουργία του δικτύου παρακολουθείται 24 ώρες το εικοσιτετράωρο, 365 μέρες το χρόνο με ειδικό ηλεκτρονικό σύστημα (SCADA) στο σύγχρονο κέντρο ελέγχου της εταιρείας. Επιπλέον γίνονται προληπτικοί και συστηματικοί επιτόπιοι έλεγχοι καλής λειτουργίας από εξειδικευμένους τεχνικούς.

Εξειδικευμένοι μηχανικοί, αδειοδοτημένοι υδραυλικοί εγκαταστάτες και αδειοδοτημένοι τεχνικοί καυστήρων αναλαμβάνουν την κατασκευή και ρύθμιση των εσωτερικών εγκαταστάσεων φυσικού αερίου εκτός και εντός του κτιρίου.

 

Ο κανονισμός εσωτερικής εγκατάστασης που εφαρμόζει η Εταιρεία Παροχής Αερίου Αττικής Α.Ε. είναι εναρμονισμένος με τις προδιαγραφές που ορίζει η Ευρωπαϊκή Κοινότητα και που εφαρμόζεται στη Δυτική Ευρώπη.

Πριν την έναρξη παροχής φυσικού αερίου, πραγματοποιείται πάντα τελικός έλεγχος της εγκατάστασης από τους τεχνικούς επιθεωρητές της Εταιρείας Παροχής Αερίου Αττικής.

 

Ασφάλεια από τις συσκευές

Σε περίπτωση που σβήσει η φλόγα της συσκευής, ο ειδικός μηχανισμός που διαθέτουν οι συσκευές φυσικού αερίου διακόπτει αυτόματα την παροχή του. Επιπλέον μπορεί να τοποθετηθεί ειδικός ανιχνευτής φυσικού αερίου στο χώρο με αυτοματισμό διακοπής της παροχής του.

 

!!! Σημαντικό: Η AEGEAN φυσικό αέριο είναι Εξουσιοδοτημένος Εμπορικός Συνεργάτης και Αδειοδοτημένος Εγκαταστάτης της ΕΠΑ Φυσικό Αέριο Αττικής ΑΕ. Η ομάδα των μηχανικών μας μπορεί να σας εξασφαλίσει την υψηλότερη ποιότητα κατασκευής του έργου σύνδεσης με την μέγιστη απόλυτη ασφάλεια. 

ΜΕΛΕΤΗ ΚΑΙ ΟΙΚΟΝΟΜΙΚΗ ΠΡΟΣΦΟΡΑ ΤΟΥ ΕΡΓΟΥ
Επικοινωνήστε μαζί μας και ένας μηχανικός μας θα σας επισκευθεί άμεσα ώστε να καταγράψει τις ανάγκες σας και τις τεχνικές προδιαγραφές του έργου.

 

Η ομάδα των μηχανικών μας, θα μελετήσει τα στοιχεία της καταγραφής και θα αποτυπώσει όλες τις δυνατές λύσεις που έχετε σχετικά με τον σχεδιασμό του έργου, την επιλογή των υλικών και των συσκευών, σε μία πλήρη και λεπτομερώς κοστολογημένη μελέτη/προσφορά.

 

Τέλος η μελέτη/προσφορά θα σας παραδοθεί γραπτώς, και ο μηχανικός μας θα σας την παρουσιάσει με λεπτομέρεια και σαφήνεια, ώστε να αποκτήσετε σαφή εικόνα των τεχνικών λεπτομερειών και κάθε εμπλεκόμενου κόστους. 

Σχόλια Πελατών

Τα σχόλια των πελατών μας μετράνε. Η γνώμη σας μας κάνει πιο δυνατούς.

Αποφασίσαμε στην πολυκατοικία να εγκαταστήσουμε Φυσικό Αέριο. Πήραμε πολλές προσφορές. Η AEGEAN - Φυσικό αέριο από την αρχή έκανε την διαφορά. Έδωσε την προσφορά στην ώρα της, ξεκάθαρη και κατανοητή από την αρχή. Μας κέρδισαν και τους δώσαμε την δουλειά. Στην συνέχεια η υπευθυνότητα του συνεργείου και η άριστη συμπεριφορά των ανθρώπων μας επιβεβαίωσαν ότι η αρχική μας επιλογή ήταν η καλύτερη.

Μου συνέστησε την AEGEAN μια φίλη. Της είχαν δώσει προσφορά για την δική της αυτονομία αλλά επέλεξε μια φτηνότερη εταιρεία και το μετάνιωσε. Πήρα προσφορά και μου έκανε εντύπωση η κατάρτιση των ανθρώπων που με επισκέφτηκαν. Οι εργασίες κύλησαν άψογα και όλα έγιναν στην ώρα τους χωρίς κανένα πρόβλημα. Μάλιστα εντάχθηκα σε χρηματοδοτικό πρόγραμμα της ΕΠΑ και τώρα έχω θέρμανση και ζεστό νερό χρήσης χωρίς να το καταλάβω. Απροβλημάτιστα!!!!!