4.1. The all-aluminum conductor (AAC), identified by the code word Bluebell, is composed of 37 strands, each having a diameter of 0.1672 in. Tables of characteristics of AACs list an area of 1,033,500 cmil for this conductor. 1 cmil = T/410 in. Are these (2024)

`); let searchUrl = `/search/`; history.forEach((elem) => { prevsearch.find('#prevsearch-options').append(`

${elem}

`); }); } $('#search-pretype-options').empty(); $('#search-pretype-options').append(prevsearch); let prevbooks = $(false); [ {title:"Recently Opened Textbooks", books:previous_books}, {title:"Recommended Textbooks", books:recommended_books} ].forEach((book_segment) => { if (Array.isArray(book_segment.books) && book_segment.books.length>0 && nsegments<2) { nsegments+=1; prevbooks = $(`

  • ${book_segment.title}
  • `); let searchUrl = "/books/xxx/"; book_segment.books.forEach((elem) => { prevbooks.find('#prevbooks-options'+nsegments.toString()).append(`

    ${elem.title} ${ordinal(elem.edition)} ${elem.author}

    `); }); } $('#search-pretype-options').append(prevbooks); }); } function anon_pretype() { let prebooks = null; try { prebooks = JSON.parse(localStorage.getItem('PRETYPE_BOOKS_ANON')); }catch(e) {} if ('previous_books' in prebooks && 'recommended_books' in prebooks) { previous_books = prebooks.previous_books; recommended_books = prebooks.recommended_books; if (typeof PREVBOOKS !== 'undefined' && Array.isArray(PREVBOOKS)) { new_prevbooks = PREVBOOKS; previous_books.forEach(elem => { for (let i = 0; i < new_prevbooks.length; i++) { if (elem.id == new_prevbooks[i].id) { return; } } new_prevbooks.push(elem); }); new_prevbooks = new_prevbooks.slice(0,3); previous_books = new_prevbooks; } if (typeof RECBOOKS !== 'undefined' && Array.isArray(RECBOOKS)) { new_recbooks = RECBOOKS; for (let j = 0; j < new_recbooks.length; j++) { new_recbooks[j].viewed_at = new Date(); } let insert = true; for (let i=0; i < recommended_books.length; i++){ for (let j = 0; j < new_recbooks.length; j++) { if (recommended_books[i].id == new_recbooks[j].id) { insert = false; } } if (insert){ new_recbooks.push(recommended_books[i]); } } new_recbooks.sort((a,b)=>{ adate = new Date(2000, 0, 1); bdate = new Date(2000, 0, 1); if ('viewed_at' in a) {adate = new Date(a.viewed_at);} if ('viewed_at' in b) {bdate = new Date(b.viewed_at);} // 100000000: instead of just erasing the suggestions from previous week, // we just move them to the back of the queue acurweek = ((new Date()).getDate()-adate.getDate()>7)?0:100000000; bcurweek = ((new Date()).getDate()-bdate.getDate()>7)?0:100000000; aviews = 0; bviews = 0; if ('views' in a) {aviews = acurweek+a.views;} if ('views' in b) {bviews = bcurweek+b.views;} return bviews - aviews; }); new_recbooks = new_recbooks.slice(0,3); recommended_books = new_recbooks; } localStorage.setItem('PRETYPE_BOOKS_ANON', JSON.stringify({ previous_books: previous_books, recommended_books: recommended_books })); build_popup(); } } var whiletyping_search_object = null; var whiletyping_search = { books: [], curriculum: [], topics: [] } var single_whiletyping_ajax_promise = null; var whiletyping_database_initial_burst = 0; //number of consecutive calls, after 3 we start the 1 per 5 min calls function get_whiletyping_database() { //gets the database from the server. // 1. by validating against a local database value we confirm that the framework is working and // reduce the ammount of continuous calls produced by errors to 1 per 5 minutes. return localforage.getItem('whiletyping_last_attempt').then(function(value) { if ( value==null || (new Date()) - (new Date(value)) > 1000*60*5 || (whiletyping_database_initial_burst < 3) ) { localforage.setItem('whiletyping_last_attempt', (new Date()).getTime()); // 2. Make an ajax call to the server and get the search database. let databaseUrl = `/search/whiletype_database/`; let resp = single_whiletyping_ajax_promise; if (resp === null) { whiletyping_database_initial_burst = whiletyping_database_initial_burst + 1; single_whiletyping_ajax_promise = resp = new Promise((resolve, reject) => { $.ajax({ url: databaseUrl, type: 'POST', data:{csrfmiddlewaretoken: "W52hpQSh2voCsdDcS7KN2RIm2YlDNXjTGGlQ0DVTXV1Ig9Y7WoEnb3YRJlurIpeB"}, success: function (data) { // 3. verify that the elements of the database exist and are arrays if ( ('books' in data) && ('curriculum' in data) && ('topics' in data) && Array.isArray(data.books) && Array.isArray(data.curriculum) && Array.isArray(data.topics)) { localforage.setItem('whiletyping_last_success', (new Date()).getTime()); localforage.setItem('whiletyping_database', data); resolve(data); } }, error: function (error) { console.log(error); resolve(null); }, complete: function (data) { single_whiletyping_ajax_promise = null; } }) }); } return resp; } return Promise.resolve(null); }).catch(function(err) { console.log(err); return Promise.resolve(null); }); } function get_whiletyping_search_object() { // gets the fuse objects that will be in charge of the search if (whiletyping_search_object){ return Promise.resolve(whiletyping_search_object); } database_promise = localforage.getItem('whiletyping_database').then(function(database) { return localforage.getItem('whiletyping_last_success').then(function(last_success) { if (database==null || (new Date()) - (new Date(last_success)) > 1000*60*60*24*30 || (new Date('2023-04-25T00:00:00')) - (new Date(last_success)) > 0) { // New database update return get_whiletyping_database().then(function(new_database) { if (new_database) { database = new_database; } return database; }); } else { return Promise.resolve(database); } }); }); return database_promise.then(function(database) { if (database) { const options = { isCaseSensitive: false, includeScore: true, shouldSort: true, // includeMatches: false, // findAllMatches: false, // minMatchCharLength: 1, // location: 0, threshold: 0.2, // distance: 100, // useExtendedSearch: false, ignoreLocation: true, // ignoreFieldNorm: false, // fieldNormWeight: 1, keys: [ "title" ] }; let curriculum_index={}; let topics_index={}; database.curriculum.forEach(c => curriculum_index[c.id]=c); database.topics.forEach(t => topics_index[t.id]=t); for (j=0; j

    Solutions
  • Textbooks
  • `); } function build_solutions() { if (Array.isArray(solution_search_result)) { const viewAllHTML = userSubscribed ? `View All` : ''; var solutions_section = $(`
  • Solutions ${viewAllHTML}
  • `); let questionUrl = "/questions/xxx/"; let askUrl = "/ask/question/xxx/"; solution_search_result.forEach((elem) => { let url = ('course' in elem)?askUrl:questionUrl; let solution_type = ('course' in elem)?'ask':'question'; let subtitle = ('course' in elem)?(elem.course??""):(elem.book ?? "")+"    "+(elem.chapter?"Chapter "+elem.chapter:""); solutions_section.find('#whiletyping-solutions').append(` ${elem.text} ${subtitle} `); }); $('#search-solution-options').empty(); if (Array.isArray(solution_search_result) && solution_search_result.length>0){ $('#search-solution-options').append(solutions_section); } MathJax.typesetPromise([document.getElementById('search-solution-options')]); } } function build_textbooks() { $('#search-pretype-options').empty(); $('#search-pretype-options').append($('#search-solution-options').html()); if (Array.isArray(textbook_search_result)) { var books_section = $(`
  • Textbooks View All
  • `); let searchUrl = "/books/xxx/"; textbook_search_result.forEach((elem) => { books_section.find('#whiletyping-books').append(` ${elem.title} ${ordinal(elem.edition)} ${elem.author} `); }); } if (Array.isArray(textbook_search_result) && textbook_search_result.length>0){ $('#search-pretype-options').append(books_section); } } function build_popup(first_time = false) { if ($('#search-text').val()=='') { build_pretype(); } else { solution_and_textbook_search(); } } var search_text_out = true; var search_popup_out = true; const is_login = false; const user_hash = null; function pretype_setup() { $('#search-text').focusin(function() { $('#search-popup').addClass('show'); resize_popup(); search_text_out = false; }); $( window ).resize(function() { resize_popup(); }); $('#search-text').focusout(() => { search_text_out = true; if (search_text_out && search_popup_out) { $('#search-popup').removeClass('show'); } }); $('#search-popup').mouseenter(() => { search_popup_out = false; }); $('#search-popup').mouseleave(() => { search_popup_out = true; if (search_text_out && search_popup_out) { $('#search-popup').removeClass('show'); } }); $('#search-text').on("keyup", delay(() => { build_popup(); }, 200)); build_popup(true); let prevbookUrl = `/search/pretype_books/`; let prebooks = null; try { prebooks = JSON.parse(localStorage.getItem('PRETYPE_BOOKS_'+(is_login?user_hash:'ANON'))); }catch(e) {} if (prebooks && 'previous_books' in prebooks && 'recommended_books' in prebooks) { if (is_login) { previous_books = prebooks.previous_books; recommended_books = prebooks.recommended_books; if (prebooks.time && new Date().getTime()-prebooks.time<1000*60*60*6) { build_popup(); return; } } else { anon_pretype(); return; } } $.ajax({ url: prevbookUrl, method: 'POST', data:{csrfmiddlewaretoken: "W52hpQSh2voCsdDcS7KN2RIm2YlDNXjTGGlQ0DVTXV1Ig9Y7WoEnb3YRJlurIpeB"}, success: function(response){ previous_books = response.previous_books; recommended_books = response.recommended_books; if (is_login) { localStorage.setItem('PRETYPE_BOOKS_'+user_hash, JSON.stringify({ previous_books: previous_books, recommended_books: recommended_books, time: new Date().getTime() })); } build_popup(); }, error: function(response){ console.log(response); } }); } $( document ).ready(pretype_setup); $( document ).ready(function(){ $('#search-popup').on('click', '.search-view-item', function(e) { e.preventDefault(); let autoCompleteSearchViewUrl = `/search/autocomplete_search_view/`; let objectUrl = $(this).attr('href'); let selectedId = $(this).data('objid'); let searchResults = []; $("#whiletyping-solutions").find("a").each(function() { let is_selected = selectedId === $(this).data('objid'); searchResults.push({ objectId: $(this).data('objid'), contentType: $(this).data('contenttype'), category: $(this).data('category'), selected: is_selected }); }); $("#whiletyping-books").find("a").each(function() { let is_selected = selectedId === $(this).data('objid'); searchResults.push({ objectId: $(this).data('objid'), contentType: $(this).data('contenttype'), category: $(this).data('category'), selected: is_selected }); }); $.ajax({ url: autoCompleteSearchViewUrl, method: 'POST', data:{ csrfmiddlewaretoken: "W52hpQSh2voCsdDcS7KN2RIm2YlDNXjTGGlQ0DVTXV1Ig9Y7WoEnb3YRJlurIpeB", query: $('#search-text').val(), searchObjects: JSON.stringify(searchResults) }, dataType: 'json', complete: function(data){ window.location.href = objectUrl; } }); }); });
    4.1. The all-aluminum conductor (AAC), identified by the code word Bluebell, is composed of 37 strands, each having a diameter of 0.1672 in. Tables of characteristics of AACs list an area of 1,033,500 cmil for this conductor. 1 cmil = T/410 in. Are these  (2024)

    FAQs

    What is the all aluminum conductor identified by the code word bluebell? ›

    The all-aluminum conductor (AAC) identified by the code word Bluebell is composed of 37 strands, each having a diameter of 0.1672 in. Tables of characteristics of AACs list an area of 1,033,500 cmil for this conductor (1 cmil-(π/4) x 10-6 in, Are these values consistent with each other?

    What is the area in circular mils of an aluminum conductor? ›

    The area in circular mils of the aluminum conductor is approximately 1,190,425 circular mils. The conductivity of aluminum is approximately 3.5 × 10^7 S/m or 35,500,000 S/m when converted to S/ft.

    What is the identified conductor? ›

    An identified conductor is a conductor that has either a white or grey covering (or other effective means), or, in the case of certain flexible cords, a raised longitudinal ridge. In either case, the identified conductor is the grounded circuit conductor or a neutral.

    What is the color of conductor identification? ›

    Plug wiring colours
    WireColour
    LiveBrown
    NeutralBlue
    EarthYellow and Green

    What size is aluminum conductor? ›

    The minimum size of conductor used in domestic wiring must not be of a size less than 1/1.12 mm in copper or 1/1.40 mm (1.5 mm) in the aluminum wire. For domestic subcircuit, the maximum load should not be exceeded beyond 800 W, and the current rating also not exceed beyond 10 A.

    What is diameter in circular mils? ›

    A mil is a length, distance, or diameter that is equal to 1 / 1,000th of an inch (a milli-inch). A circular mil is a unit of cross-sectional area that is equal to the area of a circle that is one mil (0.001 inches) in diameter.

    How many mils are in a circle? ›

    One circle unit that strikes me as strange is the "mils" used for military targeting: there are 6400 mils in a circle. The benefit of this is that 1 meter wide at a distance of 1 kilometer corresponds to 1 mil.

    What are the names of aluminum conductors? ›

    These cables are formally known as All Aluminium Conductor (AAC), All Aluminium Alloy Conductor (AAAC) and Aluminium Conductor Steel Reinforced (ACSR). These overhead aluminium conductors are used as power transmission and distribution lines.

    What is the HSN code for aluminum conductors? ›

    Search HS Code
    HSN CodeProduct Description
    7604Aluminium bars, rods and profiles
    760429Other:
    76042910Hard drawn bare aluminium conductors steel re- inforced (a.c.s.r.)

    Why are conductors named after birds? ›

    To help avoid confusion due to the numerous combinations of stranding of the steel and aluminium strands, code words are used to specify a specific conductor version. In North America bird names are used for the code words while animal names are used elsewhere.

    What is the color code of the conductors in three wire nm cable _______? ›

    Final answer: In a three-conductor NM cable, the usual colors present are one white or gray for neutral, one red or black for live/hot, and one green, yellow, or bare wire for ground. But these can vary based on the region or specific cable. It's essential always to determine the color code in your practical usage.

    Top Articles
    Read Her Triplet Alphas by Joanna J Chapter 1
    Her Triplet Alphas (Book 2)
    7 C's of Communication | The Effective Communication Checklist
    Duralast Gold Cv Axle
    Melson Funeral Services Obituaries
    Fat Hog Prices Today
    Visitor Information | Medical Center
    Chatiw.ib
    Manhattan Prep Lsat Forum
    Ds Cuts Saugus
    Sarah F. Tebbens | people.wright.edu
    Nyuonsite
    Chase Claypool Pfr
    Obituary Times Herald Record
    Craigslist Labor Gigs Albuquerque
    Cranberry sauce, canned, sweetened, 1 slice (1/2" thick, approx 8 slices per can) - Health Encyclopedia
    10 Free Employee Handbook Templates in Word & ClickUp
    Roster Resource Orioles
    ABCproxy | World-Leading Provider of Residential IP Proxies
    Drift Boss 911
    Bella Bodhi [Model] - Bio, Height, Body Stats, Family, Career and Net Worth 
    Conan Exiles Sorcery Guide – How To Learn, Cast & Unlock Spells
    Jail View Sumter
    St Clair County Mi Mugshots
    Garnish For Shrimp Taco Nyt
    Hood County Buy Sell And Trade
    Galaxy Fold 4 im Test: Kauftipp trotz Nachfolger?
    Water Temperature Robert Moses
    55Th And Kedzie Elite Staffing
    Mynahealthcare Login
    Free T33N Leaks
    Wolfwalkers 123Movies
    Osrs Important Letter
    Package Store Open Near Me Open Now
    Fandango Pocatello
    Flixtor Nu Not Working
    Beth Moore 2023
    Honda Ruckus Fuse Box Diagram
    Midsouthshooters Supply
    Mohave County Jobs Craigslist
    Nearest Ups Office To Me
    NHL training camps open with Swayman's status with the Bruins among the many questions
    Search All of Craigslist: A Comprehensive Guide - First Republic Craigslist
    Craigslist Tulsa Ok Farm And Garden
    Second Chance Apartments, 2nd Chance Apartments Locators for Bad Credit
    18 terrible things that happened on Friday the 13th
    Coffee County Tag Office Douglas Ga
    Hdmovie2 Sbs
    552 Bus Schedule To Atlantic City
    Poster & 1600 Autocollants créatifs | Activité facile et ludique | Poppik Stickers
    Leslie's Pool Supply Redding California
    Varsity Competition Results 2022
    Latest Posts
    Article information

    Author: Lidia Grady

    Last Updated:

    Views: 5235

    Rating: 4.4 / 5 (45 voted)

    Reviews: 84% of readers found this page helpful

    Author information

    Name: Lidia Grady

    Birthday: 1992-01-22

    Address: Suite 493 356 Dale Fall, New Wanda, RI 52485

    Phone: +29914464387516

    Job: Customer Engineer

    Hobby: Cryptography, Writing, Dowsing, Stand-up comedy, Calligraphy, Web surfing, Ghost hunting

    Introduction: My name is Lidia Grady, I am a thankful, fine, glamorous, lucky, lively, pleasant, shiny person who loves writing and wants to share my knowledge and understanding with you.