{"id":12818,"date":"2025-01-28T23:45:35","date_gmt":"2025-01-28T17:45:35","guid":{"rendered":"https:\/\/greenbytes.net.bd\/?page_id=12818"},"modified":"2025-01-30T05:03:20","modified_gmt":"2025-01-29T23:03:20","slug":"splitter-loss-calculator","status":"publish","type":"page","link":"https:\/\/greenbytes.net.bd\/bn\/splitter-loss-calculator\/","title":{"rendered":"PON \u09b8\u09cd\u09aa\u09cd\u09b2\u09bf\u099f\u09be\u09b0 \u0985\u09a8\u09c1\u09aa\u09be\u09a4 \u0995\u09cd\u09b7\u09a4\u09bf \u0995\u09cd\u09af\u09be\u09b2\u0995\u09c1\u09b2\u09c7\u099f\u09b0"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><div class=\"vc_row wpb_row vc_row-fluid\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\">\n\t<div  class=\"wpb_single_image wpb_content_element vc_align_center wpb_content_element\">\n\t\t\n\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t<div class=\"vc_single_image-wrapper   vc_box_border_grey\"><img loading=\"lazy\" decoding=\"async\" width=\"200\" height=\"95\" src=\"https:\/\/i0.wp.com\/greenbytes.net.bd\/wp-content\/uploads\/2018\/02\/greenbytes-web-logo1.png?fit=200%2C95&amp;ssl=1\" class=\"vc_single_image-img attachment-full\" alt=\"\" title=\"greenbytes-web-logo1\" srcset=\"https:\/\/i0.wp.com\/greenbytes.net.bd\/wp-content\/uploads\/2018\/02\/greenbytes-web-logo1.png?w=200&amp;ssl=1 200w, https:\/\/i0.wp.com\/greenbytes.net.bd\/wp-content\/uploads\/2018\/02\/greenbytes-web-logo1.png?resize=18%2C9&amp;ssl=1 18w\" sizes=\"auto, (max-width: 200px) 100vw, 200px\" \/><\/div>\n\t\t<\/figure>\n\t<\/div>\n\n\t<div class=\"wpb_raw_code wpb_raw_html wpb_content_element\" >\n\t\t<div class=\"wpb_wrapper\">\n\t\t\t<!DOCTYPE html>\r\n<html>\r\n<head>\r\n    <title>PON Splitter Calculator<\/title>\r\n    <style>\r\n        body {\r\n            font-family: Arial, sans-serif;\r\n            background-color: #f4f4f4;\r\n            text-align: center;\r\n            padding: 20px;\r\n        }\r\n        .container {\r\n            background: white;\r\n            padding: 20px;\r\n            border-radius: 10px;\r\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\r\n            display: inline-block;\r\n        }\r\n        input, select {\r\n            padding: 10px;\r\n            margin: 10px;\r\n            width: 200px;\r\n            border-radius: 5px;\r\n            border: 1px solid #ccc;\r\n            font-size: 16px;\r\n        }\r\n        button {\r\n            padding: 10px 20px;\r\n            font-size: 16px;\r\n            background-color: #28a745;\r\n            color: white;\r\n            border: none;\r\n            border-radius: 5px;\r\n            cursor: pointer;\r\n        }\r\n        button:hover {\r\n            background-color: #218838;\r\n        }\r\n        h3 {\r\n            color: #333;\r\n        }\r\n    <\/style>\r\n    <script>\r\n        function calculatePowerLoss() {\r\n            let inputPower = parseFloat(document.getElementById(\"inputPower\").value);\r\n            let ratio = document.getElementById(\"splitRatio\").value;\r\n            \r\n            if (isNaN(inputPower)) {\r\n                alert(\"Please enter a valid input power.\");\r\n                return;\r\n            }\r\n            \r\n            let lossValues = {\r\n                \"1:2\": 3.01,\r\n                \"1:4\": 6.02,\r\n                \"1:8\": 9.03,\r\n                \"1:16\": 12.04,\r\n                \"1:32\": 15.05,\r\n                \"1:64\": 18.06,\r\n                \"5:95\": [13, 0.22],\r\n                \"10:90\": [10, 0.46],\r\n                \"20:80\": [7, 0.97]\r\n            };\r\n            \r\n            let outputPower1, outputPower2;\r\n            \r\n            if (ratio in lossValues) {\r\n                if (Array.isArray(lossValues[ratio])) {\r\n                    outputPower1 = inputPower - lossValues[ratio][0];\r\n                    outputPower2 = inputPower - lossValues[ratio][1];\r\n                } else {\r\n                    outputPower1 = inputPower - lossValues[ratio];\r\n                    outputPower2 = outputPower1; \/\/ Equal split for 1:N ratios\r\n                }\r\n            } else {\r\n                alert(\"Please select a valid split ratio.\");\r\n                return;\r\n            }\r\n            \r\n            document.getElementById(\"outputPower1\").innerText = \"Output Power (Low Split): \" + outputPower1.toFixed(2) + \" dBm\";\r\n            document.getElementById(\"outputPower2\").innerText = \"Output Power (High Split): \" + outputPower2.toFixed(2) + \" dBm\";\r\n        }\r\n    <\/script>\r\n<\/head>\r\n<body>\r\n    <div class=\"container\">\r\n        <h2>PON Splitter Ratio Loss Calculator<\/h2>\r\n        <label for=\"inputPower\">Input Laser Power (dBm):<\/label><br>\r\n        <input type=\"number\" id=\"inputPower\" step=\"0.01\"><br>\r\n        \r\n        <label for=\"splitRatio\">Select Splitter:<\/label><br>\r\n        <select id=\"splitRatio\">\r\n            <option value=\"1:2\">1:2 (2way Splitter)<\/option>\r\n            <option value=\"1:4\">1:4 (4way Splitter)<\/option>\r\n            <option value=\"1:8\">1:8 (8way Splitter)<\/option>\r\n            <option value=\"1:16\">1:16 (16way Splitter)<\/option>\r\n            <option value=\"1:32\">1:32 (32way Splitter)<\/option>\r\n            <option value=\"1:64\">1:64 (64way Splitter)<\/option>\r\n            <option value=\"5:95\">5:95 (Ratio Splitter)<\/option>\r\n            <option value=\"10:90\">10:90 (Ratio Splitter)<\/option>\r\n            <option value=\"20:80\">20:80 (Ratio Splitter)<\/option>\r\n        <\/select><br>\r\n        \r\n        <button onclick=\"calculatePowerLoss()\">Calculate Loss<\/button>\r\n        \r\n        <h3 id=\"outputPower1\">Output Power (Low Split): <\/h3>\r\n        <h3 id=\"outputPower2\">Output Power (High Split): <\/h3>\r\n    <\/div>\r\n<\/body>\r\n<\/html>\r\n\n\t\t<\/div>\n\t<\/div>\n\n\t<div class=\"wpb_text_column wpb_content_element\" >\n\t\t<div class=\"wpb_wrapper\">\n\t\t\t<p style=\"text-align: center;\"><span style=\"color: #3366ff;\"><a style=\"color: #3366ff;\" href=\"https:\/\/greenbytes.net.bd\/pon-splitter-loss-calculator\/\" target=\"_blank\" rel=\"noopener\">Press here<\/a><\/span> to calculate with Number of Splitter Ports.<\/p>\n\n\t\t<\/div>\n\t<\/div>\n<\/div><\/div><\/div><\/div><div class=\"vc_row wpb_row vc_row-fluid\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\"><div class=\"vc_empty_space\"   style=\"height: 20px\"><span class=\"vc_empty_space_inner\"><\/span><\/div><p  class=\"vc_general wpb-copyright wpb_copyright_element wpb_copyright_element-align-center\">&copy; 2026, GREEN BYTES (BTRC-Licensed ISP)<\/p><\/div><\/div><\/div><\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"PON Splitter Calculator PON Splitter Ratio Loss Calculator Input Laser Power (dBm): Select Splitter: 1:2 (2way Splitter) 1:4 (4way Splitter) 1:8 (8way Splitter) 1:16 (16way Splitter) 1:32 (32way Splitter) 1:64 (64way Splitter) 5:95 (Ratio Splitter) 10:90 (Ratio Splitter) 20:80 (Ratio Splitter) Calculate Loss Output Power (Low Split): Output Power (High Split): Press here to calculate with Number of Splitter Ports. &copy; 2026, GREEN BYTES (BTRC-Licensed ISP)","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/full-width.php","meta":{"footnotes":""},"class_list":["post-12818","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PON Splitter Ratio Loss Calculator - GREEN BYTES<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/greenbytes.net.bd\/bn\/splitter-loss-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PON Splitter Ratio Loss Calculator - GREEN BYTES\" \/>\n<meta property=\"og:url\" content=\"https:\/\/greenbytes.net.bd\/bn\/splitter-loss-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"GREEN BYTES\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/greenbytes.net.bd\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-29T23:03:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/greenbytes.net.bd\/wp-content\/uploads\/2018\/02\/greenbytes-banner-2025-jan.jpg?fit=810%2C810&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"810\" \/>\n\t<meta property=\"og:image:height\" content=\"810\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@GREENBYTESBD\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 \u09ae\u09bf\u09a8\u09bf\u099f\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/greenbytes.net.bd\/splitter-loss-calculator\/\",\"url\":\"https:\/\/greenbytes.net.bd\/splitter-loss-calculator\/\",\"name\":\"PON Splitter Ratio Loss Calculator - GREEN BYTES\",\"isPartOf\":{\"@id\":\"https:\/\/greenbytes.net.bd\/#website\"},\"datePublished\":\"2025-01-28T17:45:35+00:00\",\"dateModified\":\"2025-01-29T23:03:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/greenbytes.net.bd\/splitter-loss-calculator\/#breadcrumb\"},\"inLanguage\":\"bn-BD\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/greenbytes.net.bd\/splitter-loss-calculator\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/greenbytes.net.bd\/splitter-loss-calculator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/greenbytes.net.bd\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PON Splitter Ratio Loss Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/greenbytes.net.bd\/#website\",\"url\":\"https:\/\/greenbytes.net.bd\/\",\"name\":\"https:\/\/greenbytes.net.bd\/\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/greenbytes.net.bd\/#organization\"},\"alternateName\":\"GREEN BYTES Broadband Internet\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/greenbytes.net.bd\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"bn-BD\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/greenbytes.net.bd\/#organization\",\"name\":\"GREEN BYTES\",\"url\":\"https:\/\/greenbytes.net.bd\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"bn-BD\",\"@id\":\"https:\/\/greenbytes.net.bd\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/i0.wp.com\/greenbytes.net.bd\/wp-content\/uploads\/2018\/02\/greenbytes-web-logo1.png?fit=200%2C95&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/greenbytes.net.bd\/wp-content\/uploads\/2018\/02\/greenbytes-web-logo1.png?fit=200%2C95&ssl=1\",\"width\":200,\"height\":95,\"caption\":\"GREEN BYTES\"},\"image\":{\"@id\":\"https:\/\/greenbytes.net.bd\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/greenbytes.net.bd\/\",\"https:\/\/x.com\/GREENBYTESBD\",\"https:\/\/www.youtube.com\/@greenbytes\",\"https:\/\/www.instagram.com\/greenbytes.net.bd\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PON Splitter Ratio Loss Calculator - GREEN BYTES","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/greenbytes.net.bd\/bn\/splitter-loss-calculator\/","og_locale":"en_US","og_type":"article","og_title":"PON Splitter Ratio Loss Calculator - GREEN BYTES","og_url":"https:\/\/greenbytes.net.bd\/bn\/splitter-loss-calculator\/","og_site_name":"GREEN BYTES","article_publisher":"https:\/\/www.facebook.com\/greenbytes.net.bd\/","article_modified_time":"2025-01-29T23:03:20+00:00","og_image":[{"width":810,"height":810,"url":"https:\/\/i0.wp.com\/greenbytes.net.bd\/wp-content\/uploads\/2018\/02\/greenbytes-banner-2025-jan.jpg?fit=810%2C810&ssl=1","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@GREENBYTESBD","twitter_misc":{"Est. reading time":"1 \u09ae\u09bf\u09a8\u09bf\u099f"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/greenbytes.net.bd\/splitter-loss-calculator\/","url":"https:\/\/greenbytes.net.bd\/splitter-loss-calculator\/","name":"PON Splitter Ratio Loss Calculator - GREEN BYTES","isPartOf":{"@id":"https:\/\/greenbytes.net.bd\/#website"},"datePublished":"2025-01-28T17:45:35+00:00","dateModified":"2025-01-29T23:03:20+00:00","breadcrumb":{"@id":"https:\/\/greenbytes.net.bd\/splitter-loss-calculator\/#breadcrumb"},"inLanguage":"bn-BD","potentialAction":[{"@type":"ReadAction","target":["https:\/\/greenbytes.net.bd\/splitter-loss-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/greenbytes.net.bd\/splitter-loss-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/greenbytes.net.bd\/"},{"@type":"ListItem","position":2,"name":"PON Splitter Ratio Loss Calculator"}]},{"@type":"WebSite","@id":"https:\/\/greenbytes.net.bd\/#website","url":"https:\/\/greenbytes.net.bd\/","name":"https:\/\/greenbytes.net.bd\/","description":"","publisher":{"@id":"https:\/\/greenbytes.net.bd\/#organization"},"alternateName":"GREEN BYTES Broadband Internet","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/greenbytes.net.bd\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"bn-BD"},{"@type":"Organization","@id":"https:\/\/greenbytes.net.bd\/#organization","name":"\u0997\u09cd\u09b0\u09c0\u09a8 \u09ac\u09be\u0987\u099f\u09b8\u09cd","url":"https:\/\/greenbytes.net.bd\/","logo":{"@type":"ImageObject","inLanguage":"bn-BD","@id":"https:\/\/greenbytes.net.bd\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/greenbytes.net.bd\/wp-content\/uploads\/2018\/02\/greenbytes-web-logo1.png?fit=200%2C95&ssl=1","contentUrl":"https:\/\/i0.wp.com\/greenbytes.net.bd\/wp-content\/uploads\/2018\/02\/greenbytes-web-logo1.png?fit=200%2C95&ssl=1","width":200,"height":95,"caption":"GREEN BYTES"},"image":{"@id":"https:\/\/greenbytes.net.bd\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/greenbytes.net.bd\/","https:\/\/x.com\/GREENBYTESBD","https:\/\/www.youtube.com\/@greenbytes","https:\/\/www.instagram.com\/greenbytes.net.bd\/"]}]}},"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/greenbytes.net.bd\/bn\/wp-json\/wp\/v2\/pages\/12818","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/greenbytes.net.bd\/bn\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/greenbytes.net.bd\/bn\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/greenbytes.net.bd\/bn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/greenbytes.net.bd\/bn\/wp-json\/wp\/v2\/comments?post=12818"}],"version-history":[{"count":6,"href":"https:\/\/greenbytes.net.bd\/bn\/wp-json\/wp\/v2\/pages\/12818\/revisions"}],"predecessor-version":[{"id":12861,"href":"https:\/\/greenbytes.net.bd\/bn\/wp-json\/wp\/v2\/pages\/12818\/revisions\/12861"}],"wp:attachment":[{"href":"https:\/\/greenbytes.net.bd\/bn\/wp-json\/wp\/v2\/media?parent=12818"}],"curies":[{"name":"\u09a1\u09ac\u09cd\u09b2\u09bf\u0989\u09aa\u09bf","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}