function getSchedule(search) { var futures = {}; var json = {}; var output = document.getElementById('output'); output.innerHTML =""; json = {"date": "20181217-1559", "techprogram": [{ "id": "2814", "internal_id": "166", "title": "A Conceptual Model of Systems Engineering", "link": "sessiondetail_2814", "class": "", "day": "Wednesday", "tag": "Foundations of systems engineeringView mappingsRelationship between systems and knowledgeIntegrating domain ontologiesReasoning about systems engineering practiceGenerative formulation of mechanistic systemsFour worlds model of systems engineering", "poster": "https://event.conflr.com/IS2018/docs/posters/KeyReservePapers_166.pdf", "description": "Swaminathan Natarajan (Tata Consultancy Services Research); Anand Kumar (Tata Research Development and Design Centre); Subhrojyoti Roy Chaudhuri (TCSL); Kesav Vithal Nori (IIIT Hyderabad); Viswanath Kasturi (International Institute of Information Technology); Venkatesh Choppella (International Inst. of Info. Technology Hyderabad)" },{ "id": "2805", "internal_id": "110", "title": "A Game-Theoretical Framework for Coordination in Requirement-Based Engineering Design", "link": "sessiondetail_2805", "class": "", "day": "Tuesday", "tag": "Game TheoryTeam CoordinationRequirement-Based Engineering DesignComplex Systems", "poster": "https://event.conflr.com/IS2018/docs/posters/KeyReservePapers_110.pdf", "description": "Soodabeh Yazdani, Edward Huang (George Mason University)" },{ "id": "2810", "internal_id": "139", "title": "A Systems Approach towards Developing a Diagnostic System for Complex Robots", "link": "sessiondetail_2810", "class": "", "day": "Tuesday", "tag": "DiagnosticsSysMLRoboticsTroubleshootingFault Detection and Diagnosis", "poster": "", "description": "Rahul Krishnan, Shamsnaz Virani Bhada (Worcester Polytechnic Institute)" },{ "id": "2811", "internal_id": "142", "title": "A Tailoring of the Unified Architecture Framework’s Meta-Model for the Modeling of Systems-of-Systems", "link": "sessiondetail_2811", "class": "", "day": "Monday", "tag": "MBSEArchitecture FrameworkSystems-of-SystemsSystem Modeling", "poster": "https://event.conflr.com/IS2018/docs/posters/KeyReservePapers_142.pdf", "description": "Lucio Tirone, Emanuele Guidolotti (Aster); Lorenzo Fornaro (Leonardo)" },{ "id": "2806", "internal_id": "118", "title": "Analysis of Results for the Systems Engineering Worldviews Survey (July 2017)", "link": "sessiondetail_2806", "class": "", "day": "Wednesday", "tag": "systemsystems engineeringworldviewsurveyanalysisINCOSE", "poster": "", "description": "Eileen Arnold (ConsideredThoughtfully, Inc.); Scott Jackson (Burnham Systems); Hiliary Sillitto (Sillitto Enterprises)" },{ "id": "2816", "internal_id": "177", "title": "Implementation of A3 architectural overviews in Lean Product Development Teams; A case study in the Subsea Industry", "link": "sessiondetail_2816", "class": "", "day": "Monday", "tag": "A3 architectural overviewsoil and gascase studylean product development teams", "poster": "https://event.conflr.com/IS2018/docs/posters/KeyReservePapers_177.pdf", "description": "Sindre Løndal, Kristin Falk (University College of Southeast NO)" },{ "id": "2795", "internal_id": "70", "title": "Making Future-Proofing Design Decision under Uncertainty", "link": "sessiondetail_2795", "class": "", "day": "Tuesday", "tag": "Decision making.Future-proofing.Analytic hierarchy process.", "poster": "https://event.conflr.com/IS2018/docs/posters/KeyReservePapers_70.pdf", "description": "Obaid Ur Rehman, Michael Ryan (UNSW Canberra)" },{ "id": "2813", "internal_id": "148", "title": "Minimum SysML Representations to Enable Rapid Evaluation using Agent-Based Simulation", "link": "sessiondetail_2813", "class": "", "day": "Monday", "tag": "Model-Based Systems EngineeringAgile Systems EngineeringSystem Architecting Process ModelSysML SimulationAgent-based modelingNextGen Air transportation System", "poster": "", "description": "Apoorv Maheshwari, Ali Raz, Aleksandra Dervisevic, Robert Campbell (Purdue University); William Colligan, Andrew Murphy, Oluwatomi Kolawole (Architecture Technology Corporation); Daniel Delaurentis (Purdue University)" },{ "id": "2802", "internal_id": "93", "title": "Model-based System Engineering for the Assessment of Tactical Performance in the Complex, High Tempo Game of Soccer", "link": "sessiondetail_2802", "class": "", "day": "Monday", "tag": "Probabilistic modelsmodel-based system analysiscomplexitysystems dynamics", "poster": "", "description": "Lance Sherry (George Mason University); Aiden Sherry (Methodist University)" },{ "id": "2796", "internal_id": "73", "title": "Modeling Inference Enterprises Using Multiple Interoperating Models", "link": "sessiondetail_2796", "class": "", "day": "Monday", "tag": "Inference enterpriseMulti-modelingEnterprise engineeringInsider threat detection", "poster": "", "description": "Kathryn Laskey, Edward Huang, Abbas Zaidi (George Mason University); David Brown, Dennis Buede (Innovative Decisions, Inc.); Bahram Yousefi, Shou Matsumoto, Muhammad Imran (George Mason University)" },{ "id": "2800", "internal_id": "89", "title": "Systems Engineering Pathology: Comprehensive Characterization of Systems Engineering Dysfunction", "link": "sessiondetail_2800", "class": "", "day": "Wednesday", "tag": "Systems Engineering PathologySystems Engineering ExecutionSystems Engineering Quality", "poster": "https://event.conflr.com/IS2018/docs/posters/KeyReservePapers_89.pdf", "description": "Heidi Davidz (Aerojet Rocketdyne); Scott Jackson (Burnham Systems Consulting); Dale Thomas (University of Alabama in Huntsville)" },{ "id": "2798", "internal_id": "87", "title": "Version 1.0 of the New INCOSE Competency Framework", "link": "sessiondetail_2798", "class": "", "day": "Tuesday", "tag": "competencyproficiencyframework", "poster": "https://event.conflr.com/IS2018/docs/posters/KeyReservePapers_87.pdf", "description": "Don Gelosh (Worcester Polytechnic Institute); Mimi Heisey (Lockheed Martin Corporation); John Snoderly (Defense Acquisition University); Kenneth Nidiffer (Software Engineering Institute); Richard Beasley (Rolls-Royce plc)" }], "success": 1}; console.log(json.techprogram); program = json.techprogram; if (search.length>0){ search = search.split(" "); program = _.filter(program,function(item){ var titlereturn, authorreturn = true; for(var i =0; i < search.length; i++){ if (titlereturn==false && authorreturn==false) break; var exp = new RegExp(search[i],"gi"); var titlereturn = exp.test(item.title); var authorreturn = exp.test(item.tag); } if (titlereturn==true || authorreturn==true) return true; else return false; }); } for(var i = 0, l = program.length; i < l; i++){ var mytags = program[i].tag.replace(/[#]+[A-Za-z0-9-_]+/g, function(t) { console.log(t); //return (""+t+""); return(t); }); output.innerHTML += '

' + program[i].title + '

' + program[i].description + '
Presented on '+ program[i].day + ' breaks and Lunch
'+ mytags + '
'; }; if (output.innerHTML==""){ output.innerHTML= "No result for your research!"; } $('.iframepopup').magnificPopup({ type: 'iframe', iframe: { patterns: { nclab: { index: 'https://event.conflr.com/IS2018', id: '/', src: 'https://event.conflr.com/IS2018/%id%' } } } }); }; window.onload = function () { getSchedule(""); }; $(document).ready(function() { $("#searchvalue").keyup(function() { getSchedule($("#searchvalue").val()); }); $( "#searchform" ).submit(function( event ) { getSchedule($("#searchvalue").val()); event.preventDefault(); }); });