<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://murray.cds.caltech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Necmiye</id>
	<title>Murray Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://murray.cds.caltech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Necmiye"/>
	<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/Special:Contributions/Necmiye"/>
	<updated>2026-06-05T18:58:18Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=TuLiP_planning,_May_2013&amp;diff=15926</id>
		<title>TuLiP planning, May 2013</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=TuLiP_planning,_May_2013&amp;diff=15926"/>
		<updated>2013-05-12T17:14:16Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains a draft description of the TuLiP toolbox.&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
&lt;br /&gt;
Notes from 30 April 2013 meeting:&lt;br /&gt;
&lt;br /&gt;
[[Image:tulip-planning_30Apr13.jpg|640px]]&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
This section contains a set of example that illustrate how the TuLiP code should be structured.  This goes first so that we focus on the TuLiP interface and functionality and then figure out what is required to support it.&lt;br /&gt;
&lt;br /&gt;
=== Load up an example stored in files and synthesize a controller ===&lt;br /&gt;
This example shows how to load up a problem that is specified in files and synthesize a controller.  Save the controller to a file, but also generate a version that can be executed in Ptolemy.&lt;br /&gt;
&lt;br /&gt;
==== Code ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
import tulip&lt;br /&gt;
&lt;br /&gt;
# Load up the system and environment descriptions, plus specifications&lt;br /&gt;
system = tulip.ts.load(&amp;quot;robot-discrete.tsf&amp;quot;)&lt;br /&gt;
environment = tulip.sp.load(&amp;quot;robot-env.spf&amp;quot;)&lt;br /&gt;
specs = tulip.sp.load(&amp;quot;robot-specs.spf&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
# Synthesize a controller&lt;br /&gt;
controller = tulip.syn.jtlv(system, environment, specs)&lt;br /&gt;
&lt;br /&gt;
# Save the controller in TuLiP and Ptolemy formats&lt;br /&gt;
tulip.ts.save(&amp;quot;robot-control.tsf&amp;quot;)&lt;br /&gt;
tulip.ptolemy.savefsm(&amp;quot;robot-control.fsm&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
# The &amp;lt;tt&amp;gt;.tsf&amp;lt;/tt&amp;gt; (transition system file) and &amp;lt;tt&amp;gt;.spf&amp;lt;/tt&amp;gt; (specification file) formats are the default TuLiP file formats.&lt;br /&gt;
#* Alternatively, perhaps we have a single file format &amp;lt;tt&amp;gt;.tlp&amp;lt;/tt&amp;gt; and then use &amp;lt;tt&amp;gt;tulip.load&amp;lt;/tt&amp;gt; and &amp;lt;tt&amp;gt;tulip.save&amp;lt;/tt&amp;gt; to read and write.  The type of object would just be part of the file specification. --[[User:Murray|Richard Murray]] ([[User talk:Murray|talk]]) 15:07, 11 May 2013 (PDT)&lt;br /&gt;
# The &amp;lt;tt&amp;gt;tf&amp;lt;/tt&amp;gt; module contains data types and functions for representing different types of transition systems.  Multiple transition systems are supported, including deterministic transition systems, Markov decision processes, Kripke structures, Rabin automata, etc.&lt;br /&gt;
# The &amp;lt;tt&amp;gt;sp&amp;lt;/tt&amp;gt; module contains data types and functions for representing specifications.  Multiple temporal logics, including LTL, MTL, CTL, PCTL, TCTL, STL, etc are supported.&lt;br /&gt;
# The &amp;lt;tt&amp;gt;syn&amp;lt;/tt&amp;gt; module contains interfaces to various synthesis tools.  Supported tools include JTLV, gr1c and PRISM.  The input arguments must be compatible with the synthesis tool, but all arguments should be core TuLiP objects.&lt;br /&gt;
#* Would it make more sense to have a module for each program we support?  So this line would become &amp;lt;tt&amp;gt;tulip.jtlv.syn&amp;lt;/tt&amp;gt;? --[[User:Murray|Richard Murray]] ([[User talk:Murray|talk]]) 15:07, 11 May 2013 (PDT)&lt;br /&gt;
# The &amp;lt;tt&amp;gt;ptolemy&amp;lt;/tt&amp;gt; module contains functions for interfacing with Ptolemy.&lt;br /&gt;
#* Should we instead make an FMI interface and then use Ptolemy&#039;s FMI capability? --[[User:Murray|Richard Murray]] ([[User talk:Murray|talk]]) 15:09, 11 May 2013 (PDT)&lt;br /&gt;
#* We should be careful about MoC the automaton is synthesized for (event-based, discrete-time, continuous-time etc.) while interfacing. Ptolemy and FMI seem to have better support for certain types. -- Necmiye&lt;br /&gt;
# It would be nice to have transition system class support symbolic representations (e.g., based on variable tuples as is now instead of listing all states). For instance for a 10x10 grid, one might want to define the problem in terms of x and y coordinates instead of listing 100 states. Another example where listing the states is difficult is vms examples, where we have temperature, ice_level, wind_level, etc. This way we can take better advantage of underlying symbolic computations. -- Necmiye&lt;br /&gt;
&lt;br /&gt;
=== Create a discrete example from scratch ===&lt;br /&gt;
&lt;br /&gt;
This example shows how to create a system and environment from scratch, then synthesize a controller.  It is based on the &amp;lt;tt&amp;gt;robot-simple.py&amp;lt;/tt&amp;gt; example that is distributed with TuLiP and used in the EECI short course.&lt;br /&gt;
&lt;br /&gt;
==== Code ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
import tulip&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Create the system transition system corresponding to a 2x3 grid of cells&lt;br /&gt;
#&lt;br /&gt;
system = tulip.ts()&lt;br /&gt;
system.addstates({&#039;c11&#039;, &#039;c12&#039;, &#039;c13&#039;, &#039;c21&#039;, &#039;c22&#039;, &#039;c23&#039;})&lt;br /&gt;
&lt;br /&gt;
# Allow transitions between adjacent cells&lt;br /&gt;
system.addtransition(&#039;c11&#039;, True, {&#039;c12&#039;, &#039;c21&#039;})&lt;br /&gt;
system.addtransition(&#039;c12&#039;, True, {&#039;c11&#039;, &#039;c13&#039;, &#039;c22&#039;})&lt;br /&gt;
system.addtransition(&#039;c13&#039;, True, {&#039;c12&#039;, &#039;c31&#039;}})&lt;br /&gt;
system.addtransition(&#039;c21&#039;, True, {&#039;c12&#039;, &#039;c22&#039;})&lt;br /&gt;
system.addtransition(&#039;c22&#039;, True, {&#039;c21&#039;, &#039;c23&#039;, &#039;c12&#039;})&lt;br /&gt;
system.addtransition(&#039;c23&#039;, True, {&#039;c22&#039;, &#039;c13&#039;}})&lt;br /&gt;
&lt;br /&gt;
# Add labels to selected points&lt;br /&gt;
system.addlabel(&#039;home&#039;, &#039;c11&#039;)&lt;br /&gt;
system.addlabel(&#039;lot&#039;, &#039;c13 or c23&#039;)&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Create an environment that allows an obstacle to move around in the same state space&lt;br /&gt;
#&lt;br /&gt;
# We model the environment in a slightly different way, just to show functionality&lt;br /&gt;
#&lt;br /&gt;
environment = tulip.ts()&lt;br /&gt;
&lt;br /&gt;
environment.addvar(&#039;obs&#039;, system.states)&lt;br /&gt;
envspec = tulip.spec(environment,&lt;br /&gt;
  ( obs = c11 -&amp;gt; next (obs = c12 or obs = c21) ) and&lt;br /&gt;
  ( obs = c12 -&amp;gt; next (obs = c11 or obs = c13 or obs = c22) ) and&lt;br /&gt;
  ( obs = c13 -&amp;gt; next (obs = c12 or obs = c31) ) and&lt;br /&gt;
  ( obs = c21 -&amp;gt; next (obs = c22 or obs = c12) ) and&lt;br /&gt;
  ( obs = c22 -&amp;gt; next (obs = c21 or obs = c23 or obs = c12) ) and&lt;br /&gt;
  ( obs = c23 -&amp;gt; next (obs = c22 or obs = c13) )&lt;br /&gt;
&#039;)&lt;br /&gt;
&lt;br /&gt;
environment.addvar(&#039;park&#039;, {1, 0})&lt;br /&gt;
envspec = envspec + tulip.spec(environment, &#039;[] &amp;lt;&amp;gt; !park&#039;)&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# System specification&lt;br /&gt;
#&lt;br /&gt;
spec = tulip.spec({system,environment}, envspec + &#039;-&amp;gt; &lt;br /&gt;
  (always eventually home) and&lt;br /&gt;
  (always (park -&amp;gt; eventually lot)) and&lt;br /&gt;
  (always !(&lt;br /&gt;
    (obs = c11 and c11) or&lt;br /&gt;
    (obs = c12 and c12) or&lt;br /&gt;
    (obs = c13 and c13) or&lt;br /&gt;
    (obs = c21 and c21) or&lt;br /&gt;
    (obs = c22 and c22) or&lt;br /&gt;
    (obs = c23 and c23) ) )&lt;br /&gt;
&#039;)&lt;br /&gt;
&lt;br /&gt;
# Synthesize the automaton&lt;br /&gt;
controller = tulip.syn.jtlv(system, environment, spec)&lt;br /&gt;
&lt;br /&gt;
# Simulate the system&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Discretize continuous dynamics ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
import tulip&lt;br /&gt;
import control&lt;br /&gt;
&lt;br /&gt;
# Create a hybrid system with 2D continuous space and no discrete dynamics&lt;br /&gt;
system = tulip.hybrid(2, {})&lt;br /&gt;
&lt;br /&gt;
# Define the dynamics for the system&lt;br /&gt;
sysdyn = control.ss({{0,0,1,0}, {0,0,0,1}, {0, 0, 0, 0}, {0,0,0,0}}, {{0,0}, {0,0}, {1,0}, {0,1}}, {{1,0,0,0}, {0,1, 0,0}}, 0)&lt;br /&gt;
&lt;br /&gt;
# Define the regions for the system, along with labels and dynamics&lt;br /&gt;
system.addregion({{0,0}, {1,1}}, &#039;c11&#039;, sysdyn)&lt;br /&gt;
system.addregion({{1,0}, {2,1}}, &#039;c12&#039;, sysdyn)&lt;br /&gt;
system.addregion({{2,0}, {3,1}}, &#039;c13&#039;, sysdyn)&lt;br /&gt;
system.addregion({{0,1}, {1,2}}, &#039;c21&#039;, sysdyn)&lt;br /&gt;
system.addregion({{1,1}, {2,2}}, &#039;c22&#039;, sysdyn)&lt;br /&gt;
system.addregion({{2,1}, {3,2}}, &#039;c23&#039;, sysdyn)&lt;br /&gt;
&lt;br /&gt;
# Discretize the dynamics&lt;br /&gt;
tulip.discretize(system, 0.01)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== TuLiP classes ==&lt;br /&gt;
&lt;br /&gt;
=== TransitionSystem ===&lt;br /&gt;
&lt;br /&gt;
A transition system consists of&lt;br /&gt;
* states - a list of elements that correspond to the states of the system.  Elements are nominally strings&lt;br /&gt;
* transitions - optional subset of states x states indicating allowable transitions (doesn&#039;t have to be deterministic)&lt;br /&gt;
* actions - list of actions and what transitions they enable.  If empty&lt;br /&gt;
* labels - list of atomic propositions for any subsets of states.  Atomic propositions are given by set of all label outputs&lt;br /&gt;
* initial states&lt;br /&gt;
* acceptance sets - for Buchi and Rabin automata&lt;br /&gt;
&lt;br /&gt;
Available functions&lt;br /&gt;
&lt;br /&gt;
=== Specification ===&lt;br /&gt;
A specification is a temporal logic formula.  Specifications can be input and output as strings using the following symbols:&lt;br /&gt;
* state - evaluates to true if the system is in the discrete state &lt;br /&gt;
* atomic - evaluates to true if the atomic proposition is true&lt;br /&gt;
* logical operators: and, or, not, implies, &amp;amp;, ^, !, -&amp;gt;&lt;br /&gt;
* comparison operators: =, &amp;lt;=, &amp;gt;=, !=&lt;br /&gt;
* temporal operators: always, eventually, until, next, [], &amp;lt;&amp;gt;, U, X&lt;br /&gt;
* path operators: forall, exists, F, E&lt;br /&gt;
* probability operators?&lt;br /&gt;
&lt;br /&gt;
=== HybridSystem ===&lt;br /&gt;
&lt;br /&gt;
The HybridSystem class is used to define systems that have continuous time dynamics.  The state space of a hybrid system can be continuous, discrete or both.&lt;br /&gt;
&lt;br /&gt;
A space system consists of&lt;br /&gt;
* discrete state space - set of discrete states&lt;br /&gt;
* continuous state space - list of polygonal regions that are each subsets of R^n&lt;br /&gt;
* discrete inputs - set of discrete inputs that affect evolution of the system&lt;br /&gt;
* continuous inputs - set of continuous inputs that affect evolution of the system&lt;br /&gt;
* discrete transitions - set of guarded commands&lt;br /&gt;
* continuous dynamics - for each polygonal region, a set of dynamics that define the evolution of the system (given values for the inputs)&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Yilin_Mo,_25_February_2013&amp;diff=15468</id>
		<title>Yilin Mo, 25 February 2013</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Yilin_Mo,_25_February_2013&amp;diff=15468"/>
		<updated>2013-02-21T21:52:45Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Monday, February 25th ===&lt;br /&gt;
&lt;br /&gt;
Yinlin Mo, from Carnegie Mellon, will be visiting campus on February 25th and will give a talk.  Sign up for available meeting times.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 9:30 am: Richard, 109 Steele Lab&lt;br /&gt;
* 10:15 am: Open&lt;br /&gt;
* 11 am: Open&lt;br /&gt;
* 12:00 pm: Seminar, 114 Steele Lab&lt;br /&gt;
* 1:15 pm: Necmiye, 114 Steele Lab&lt;br /&gt;
* 2pm: Scott Livingston; meet in the Steele library (114 Steele?)&lt;br /&gt;
* 2:45pm: Eric (114 Steele)&lt;br /&gt;
* 3:30pm: Mumu, 114 Steele&lt;br /&gt;
* 4:15pm: Open&lt;br /&gt;
* 5pm: Richard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Title: Secure Estimation and Control in Cyber-Physical Systems&lt;br /&gt;
&lt;br /&gt;
Abstract: &lt;br /&gt;
&lt;br /&gt;
The concept of Cyber-Physical System (CPS) refers to the embedding of sensing, communication, control and computation into the physical spaces. Today, CPSs can be found in areas as diverse as aerospace, automotive, chemical process control, civil infrastructure, energy, health-care, manufacturing and transportation, most of which are safety critical. Any successful attack to such kind of systems can cause major disruptions, leading to great economic losses and may even endanger human lives. The first-ever CPS malware (called Stuxnet) was found in July 2010 and has raised significant concerns about CPS security. The tight coupling between information and communication technologies and physical systems in CPS introduces new security concerns, requiring a rethinking and reexamining of the commonly used objectives and methods. In this talk, we provide two different cyber-physical threat models of CPS and analyze the performance of CPS under malicious attacks. We also develop new secure and resilient estimation and control algorithms to counter the attack.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Yilin_Mo,_25_February_2013&amp;diff=15464</id>
		<title>Yilin Mo, 25 February 2013</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Yilin_Mo,_25_February_2013&amp;diff=15464"/>
		<updated>2013-02-20T23:57:26Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Monday, February 25th ===&lt;br /&gt;
&lt;br /&gt;
Yinlin Mo, from Carnegie Mellon, will be visiting campus on February 25th and will give a talk.  Sign up for available meeting times.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 9:30 am: Richard, 109 Steele Lab&lt;br /&gt;
* 10:15 am: Open&lt;br /&gt;
* 11 am: Open&lt;br /&gt;
* 12:00 pm: Seminar, 114 Steele Lab&lt;br /&gt;
* 1:15 pm: Necmiye, 130 Steele Lab&lt;br /&gt;
* 2pm: Open&lt;br /&gt;
* 2:45pm: Eric (114 Steele)&lt;br /&gt;
* 3:30pm: Open&lt;br /&gt;
* 4:15pm: Open&lt;br /&gt;
* 5pm: Richard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Title: Secure Estimation and Control in Cyber-Physical Systems&lt;br /&gt;
&lt;br /&gt;
Abstract: &lt;br /&gt;
&lt;br /&gt;
The concept of Cyber-Physical System (CPS) refers to the embedding of sensing, communication, control and computation into the physical spaces. Today, CPSs can be found in areas as diverse as aerospace, automotive, chemical process control, civil infrastructure, energy, health-care, manufacturing and transportation, most of which are safety critical. Any successful attack to such kind of systems can cause major disruptions, leading to great economic losses and may even endanger human lives. The first-ever CPS malware (called Stuxnet) was found in July 2010 and has raised significant concerns about CPS security. The tight coupling between information and communication technologies and physical systems in CPS introduces new security concerns, requiring a rethinking and reexamining of the commonly used objectives and methods. In this talk, we provide two different cyber-physical threat models of CPS and analyze the performance of CPS under malicious attacks. We also develop new secure and resilient estimation and control algorithms to counter the attack.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Vasumathi_Raman,_11_February_2013&amp;diff=15391</id>
		<title>Vasumathi Raman, 11 February 2013</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Vasumathi_Raman,_11_February_2013&amp;diff=15391"/>
		<updated>2013-02-06T19:26:54Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Monday, February 11th ===&lt;br /&gt;
&lt;br /&gt;
* 9:30 am: Richard, 109 Steele Lab&lt;br /&gt;
* 10:15 am: Necmiye, 130 Steele Lab&lt;br /&gt;
* 11 am: Seminar, 114 Steele Lab&lt;br /&gt;
* 12 pm: Lunch&lt;br /&gt;
* 1:15 pm: Open&lt;br /&gt;
* 2 pm: Open&lt;br /&gt;
* 2:45 pm: Open&lt;br /&gt;
* 3:30 pm: Open&lt;br /&gt;
* 4:15 pm: Open&lt;br /&gt;
* 5 pm: Richard, 109 Steele Lab&lt;br /&gt;
* 5:30 pm: done for the day&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title:&#039;&#039;&#039; Localizing Causes of Unsynthesizability for High-Level Robot Behaviours&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Abstract:&#039;&#039;&#039;&lt;br /&gt;
A key challenge in robotics is the generation of reactive controllers for autonomous, high-level robot behaviors. Recently, Linear Temporal Logic synthesis has emerged as a powerful tool for automatically generating autonomous robot hybrid controllers that guarantee desired behaviors expressed by the GR(1) class of temporal logic specifications. However, there are still several challenges to be met when using synthesis for robot control. When there does not exist a controller that fulfills a given specification, standard approaches do not provide the user with a source of failure, making the troubleshooting of specifications an unstructured and time-consuming process. This talk will present results on automating the analysis of unsynthesizable specifications in order to identify minimal sources of failure. &lt;br /&gt;
The talk will also discuss unsynthesizability arising from continuous execution of discrete controllers in a physical domain, and the challenges observed when creating correct-by-construction controllers for robots with actions of arbitrary relative execution durations.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bio:&#039;&#039;&#039;&lt;br /&gt;
Vasu Raman is a PhD candidate in the Department of Computer Science at Cornell University, NY. Her research addresses several challenges in correct-by-construction synthesis for robot control, including analyzing specifications that are impossible from a synthesis standpoint, and bridging the gap between provably correct discrete solutions and their continuous implementations. She is advised by Hadas Kress-Gazit in the Sibley School of Mechanical and Aerospace Engineering, and affiliated with the Autonomous Systems Lab and the LTLMoP Project. Her broader research interests include game theory, cryptography and reasoning about knowledge, and she previously worked with Joe Halpern and Rafael Pass on logical characterizations of cryptography and computational game theory. She holds a Bachelor of Arts in Computer Science and Mathematics from Wellesley College, MA.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15370</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15370"/>
		<updated>2013-02-05T21:40:50Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Presentations: == &lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/5/50/NOzay-3Feb13-ICyPhy.pdf  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/2/20/MXu_ControlSynthesis_WebEx_4Feb13_iCyPhy.pdf  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
== Possible directions for future work: ==&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (design concerns) and/or abstraction levels (contract-like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed and/or hierarchical control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
## automatically explore distributed control architectures using contracts and possibly different specialized analysis and synthesis frameworks&lt;br /&gt;
&lt;br /&gt;
[http://www.icyphy.org/icyphy/wiki/Main/2013February5DesignDriverMeeting Corresponding iCyPhy wiki page (limited access)]&lt;br /&gt;
&lt;br /&gt;
[http://www.cds.caltech.edu/~murray/wiki/index.php/Distributed_Sense_and_Control_Systems Richard&#039;s MuSyC project page]&lt;br /&gt;
&lt;br /&gt;
== References: ==&lt;br /&gt;
* [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], J. Finn, M. Mazumdar, and A. Sangiovanni-Vincentelli. MuSyC Public Report 2011.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray. Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], Huan Xu, Necmiye Ozay and Richard M. Murray, working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15369</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15369"/>
		<updated>2013-02-05T21:37:02Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: Undo revision 15361 by Necmiye (talk) + some comments from Pierluigi&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Presentations: == &lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/5/50/NOzay-3Feb13-ICyPhy.pdf  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/2/20/MXu_ControlSynthesis_WebEx_4Feb13_iCyPhy.pdf  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
== Possible directions for future work: ==&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
## automatically explore distributed control architectures using contracts and possibly different specialized analysis and synthesis frameworks&lt;br /&gt;
&lt;br /&gt;
[http://www.icyphy.org/icyphy/wiki/Main/2013February5DesignDriverMeeting Corresponding iCyPhy wiki page (limited access)]&lt;br /&gt;
&lt;br /&gt;
[http://www.cds.caltech.edu/~murray/wiki/index.php/Distributed_Sense_and_Control_Systems Richard&#039;s MuSyC project page]&lt;br /&gt;
&lt;br /&gt;
== References: ==&lt;br /&gt;
* [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], J. Finn, M. Mazumdar, and A. Sangiovanni-Vincentelli. MuSyC Public Report 2011.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray. Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], Huan Xu, Necmiye Ozay and Richard M. Murray, working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15361</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15361"/>
		<updated>2013-02-05T06:40:24Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Presentations: == &lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/5/50/NOzay-3Feb13-ICyPhy.pdf  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/ Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/2/20/MXu_ControlSynthesis_WebEx_4Feb13_iCyPhy.pdf  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
== Possible directions for future work: ==&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
[http://www.icyphy.org/icyphy/wiki/Main/2013February5DesignDriverMeeting Corresponding iCyPhy wiki page (limited access)]&lt;br /&gt;
&lt;br /&gt;
[http://www.cds.caltech.edu/~murray/wiki/index.php/Distributed_Sense_and_Control_Systems Richard&#039;s MuSyC project page]&lt;br /&gt;
&lt;br /&gt;
== References: ==&lt;br /&gt;
* [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], J. Finn, M. Mazumdar, and A. Sangiovanni-Vincentelli. MuSyC Public Report 2011.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray. Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], Huan Xu, Necmiye Ozay and Richard M. Murray, working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15360</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15360"/>
		<updated>2013-02-05T06:19:52Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Presentations: == &lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/5/50/NOzay-3Feb13-ICyPhy.pdf  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/2/20/MXu_ControlSynthesis_WebEx_4Feb13_iCyPhy.pdf  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
== Possible directions for future work: ==&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
[http://www.icyphy.org/icyphy/wiki/Main/2013February5DesignDriverMeeting Corresponding iCyPhy wiki page (limited access)]&lt;br /&gt;
&lt;br /&gt;
[http://www.cds.caltech.edu/~murray/wiki/index.php/Distributed_Sense_and_Control_Systems Richard&#039;s MuSyC project page]&lt;br /&gt;
&lt;br /&gt;
== References: ==&lt;br /&gt;
* [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], J. Finn, M. Mazumdar, and A. Sangiovanni-Vincentelli. MuSyC Public Report 2011.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray. Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], Huan Xu, Necmiye Ozay and Richard M. Murray, working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15359</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15359"/>
		<updated>2013-02-05T06:09:51Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Presentations:&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/5/50/NOzay-3Feb13-ICyPhy.pdf  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/2/20/MXu_ControlSynthesis_WebEx_4Feb13_iCyPhy.pdf  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
Possible directions for future work:&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
[http://www.icyphy.org/icyphy/wiki/Main/2013February5DesignDriverMeeting Corresponding iCyPhy wiki page-limited access]&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], J. Finn, M. Mazumdar, and A. Sangiovanni-Vincentelli. MuSyC Public Report 2011.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray. Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], Huan Xu, Necmiye Ozay and Richard M. Murray, working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15358</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15358"/>
		<updated>2013-02-05T06:05:13Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Presentations:&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/5/50/NOzay-3Feb13-ICyPhy.pdf  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/2/20/MXu_ControlSynthesis_WebEx_4Feb13_iCyPhy.pdf  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
Possible directions for future work:&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], J. Finn, M. Mazumdar, and A. Sangiovanni-Vincentelli. MuSyC Public Report 2011.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray. Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], Huan Xu, Necmiye Ozay and Richard M. Murray, working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15357</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15357"/>
		<updated>2013-02-05T06:00:17Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Presentations:&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/5/50/NOzay-3Feb13-ICyPhy.pdf  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/2/20/MXu_ControlSynthesis_WebEx_4Feb13_iCyPhy.pdf  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
Possible directions for future work:&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], J. Finn, M. Mazumdar, and A. Sangiovanni-Vincentelli. MuSyC Public Report.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray. Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], Huan Xu, Necmiye Ozay and Richard M. Murray, working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=File:NOzay-3Feb13-ICyPhy.pdf&amp;diff=15356</id>
		<title>File:NOzay-3Feb13-ICyPhy.pdf</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=File:NOzay-3Feb13-ICyPhy.pdf&amp;diff=15356"/>
		<updated>2013-02-05T05:59:41Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: Necmiye Ozay, Feb 4, 2013, iCyPhy EPS Design Driver Telecon, MuSyC EPS challenge problem overview presentation.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Necmiye Ozay, Feb 4, 2013, iCyPhy EPS Design Driver Telecon, MuSyC EPS challenge problem overview presentation.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15355</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15355"/>
		<updated>2013-02-05T05:58:32Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Presentations:&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/NOzay-Feb4  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [https://www.cds.caltech.edu/~murray/wiki/images/2/20/MXu_ControlSynthesis_WebEx_4Feb13_iCyPhy.pdf  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
Possible directions for future work:&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], J. Finn, M. Mazumdar, and A. Sangiovanni-Vincentelli. MuSyC Public Report.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray. Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], Huan Xu, Necmiye Ozay and Richard M. Murray, working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=File:MXu_ControlSynthesis_WebEx_4Feb13_iCyPhy.pdf&amp;diff=15354</id>
		<title>File:MXu ControlSynthesis WebEx 4Feb13 iCyPhy.pdf</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=File:MXu_ControlSynthesis_WebEx_4Feb13_iCyPhy.pdf&amp;diff=15354"/>
		<updated>2013-02-05T05:57:42Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: Mumu Xu, Feb 4, iCyPhy EPS Design Driver Telecon, correct-by-construction control synthesis presentation.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mumu Xu, Feb 4, iCyPhy EPS Design Driver Telecon, correct-by-construction control synthesis presentation.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15353</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15353"/>
		<updated>2013-02-05T05:52:44Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Presentations:&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/NOzay-Feb4  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/MXu-Feb4  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
Possible directions for future work:&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], J. Finn, M. Mazumdar, and A. Sangiovanni-Vincentelli. MuSyC Public Report.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray. Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], Huan Xu, Necmiye Ozay and Richard M. Murray, working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15352</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15352"/>
		<updated>2013-02-05T05:52:24Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Presentations:&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/NOzay-Feb4  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/MXu-Feb4  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
Possible directions for future work:&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], J. Finn, M. Mazumdar, and A. Sangiovanni-Vincentelli. MuSyC Public Report.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray. Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], Huan Xu, Necmiye Ozay and Richard M. Murray, working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{otwm11-iccps}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15351</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15351"/>
		<updated>2013-02-05T05:51:19Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Presentations:&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/NOzay-Feb4  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/MXu-Feb4  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
Possible directions for future work:&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* J. Finn, M. Mazumdar, A. Sangiovanni-Vincentelli, [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], MuSyC Public Report.&lt;br /&gt;
* Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray, [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Hybrid Systems: Computation and Control (HSCC) 2013.&lt;br /&gt;
* Huan Xu, Necmiye Ozay and Richard M. Murray, [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC).&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{otwm11-iccps}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15350</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15350"/>
		<updated>2013-02-05T05:50:50Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Presentations:&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/NOzay-Feb4  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/MXu-Feb4  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
Possible directions for future work:&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* J. Finn, M. Mazumdar, A. Sangiovanni-Vincentelli, [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], MuSyC Public Report.&lt;br /&gt;
* Robert Rogersten, Huan Xu, Necmiye Ozay, Ufuk Topcu, and Richard M. Murray, [http://www.cds.caltech.edu/~murray/preprints/rog+13-hscc_s.pdf An Aircraft Electric Power Testbed for Validating Automatically Synthesized Reactive Control Protocols], Hybrid Systems: Computation and Control (HSCC) 2013&lt;br /&gt;
* Huan Xu, Necmiye Ozay and Richard M. Murray, [http://www.cds.caltech.edu/~murray/preprints/xom13-hscc_s.pdf A Domain-Specific Language for Reactive Control Protocols for Aircraft Electric Power Systems], working paper.&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/papers/2012g_xtm12-cdc.html Reactive Protocols for Aircraft Electric Power Distribution], Huan Xu, Ufuk Topcu, and Richard M. Murray. 2012 Conference on Decision and Control (CDC)&lt;br /&gt;
* {{otm11-cdc}}&lt;br /&gt;
* {{otwm11-iccps}}&lt;br /&gt;
* {{Won+11-hscc}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15349</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15349"/>
		<updated>2013-02-05T05:44:06Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
!! Presentations:&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/NOzay-Feb4  Overview of the MuSyC challenge problem (Necmiye)]&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4  Review of Berkeley modeling and design space exploration work (Pierluigi)] - limited access on iCyPhy wiki&lt;br /&gt;
* [http://www.icyphy.org/icyphy/wiki/uploads/Main/MXu-Feb4  Review of Caltech correct-by-construction synthesis work (Mumu)]&lt;br /&gt;
&lt;br /&gt;
!! Possible directions for future work:&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;br /&gt;
&lt;br /&gt;
!! References:&lt;br /&gt;
* J. Finn, M. Mazumdar, A. Sangiovanni-Vincentelli, [http://www.musyc.org/thms/distributed/EPSmodelingSysML_V_02.pdf  767 Electric Power System Modeling in SysML], MuSyC Public Report.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15348</id>
		<title>ICyPhy Webex Feb 4 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=ICyPhy_Webex_Feb_4_2012&amp;diff=15348"/>
		<updated>2013-02-05T05:40:45Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: Created page with &amp;quot; !! Presentations: *  Overview of the MuSyC challenge problem (Necmiye) * [[http://www.icyphy.org/icyphy/wiki/up...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
!! Presentations:&lt;br /&gt;
* [[http://www.icyphy.org/icyphy/wiki/uploads/Main/NOzay-Feb4 | Overview of the MuSyC challenge problem (Necmiye)]]&lt;br /&gt;
* [[http://www.icyphy.org/icyphy/wiki/uploads/Main/PNuzzo-Feb4 | Review of Berkeley modeling and design space exploration work (Pierluigi)]]&lt;br /&gt;
* [[http://www.icyphy.org/icyphy/wiki/uploads/Main/MXu-Feb4 | Review of Caltech correct-by-construction synthesis work (Mumu)]]&lt;br /&gt;
&lt;br /&gt;
!! Possible directions for future work:&lt;br /&gt;
# Continuous-time synthesis&lt;br /&gt;
# Modelica like component models&lt;br /&gt;
# Identify parts of the design process where logic has to be designed by hand (so that we can try out synthesis).&lt;br /&gt;
# Sensor placement/sensor logic&lt;br /&gt;
# A unified language to capture multiple views (contract like specs in this language)&lt;br /&gt;
# Possible ways to integrate EPS domain specific language and LTL spec generator to other design tools (what that language can/should capture to be useful?)&lt;br /&gt;
# More interesting distributed control architectures: &lt;br /&gt;
## allowing controllers to share contactors&lt;br /&gt;
## allowing decisions to be made by voting&lt;br /&gt;
## mapping sensing and control points to controllers&lt;br /&gt;
## automatically finding local contracts for controllers&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Template:Otwm11-iccps&amp;diff=15347</id>
		<title>Template:Otwm11-iccps</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Template:Otwm11-iccps&amp;diff=15347"/>
		<updated>2013-02-05T04:48:26Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{conference paper|&lt;br /&gt;
| title = Distributed Synthesis of Control Protocols for Smart Camera Networks&lt;br /&gt;
| author = Necmiye Ozay, Ufuk Topcu, Tichakorn Wongpiromsarn, Richard M. Murray&lt;br /&gt;
| conference = ACM/IEEE Second International Conference on Cyber-Physical Systems&lt;br /&gt;
| year = 2011&lt;br /&gt;
| url = http://www.cds.caltech.edu/~murray/papers/otwm11-iccps.html&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Yushan_Chen,_23_January_2013&amp;diff=15108</id>
		<title>Yushan Chen, 23 January 2013</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Yushan_Chen,_23_January_2013&amp;diff=15108"/>
		<updated>2013-01-10T00:10:52Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Yushan Chen, a PhD candidate in Hybrid and Networked Systems at Boston University, will be visiting campus the 23rd of January (Wed).  Please sign up for a time to meet with her, including a location.&lt;br /&gt;
&lt;br /&gt;
=== Wednesday, January 23rd ===&lt;br /&gt;
&lt;br /&gt;
* 9:30 am: Richard&lt;br /&gt;
* 10 am: Open&lt;br /&gt;
* 10:45 am: Open&lt;br /&gt;
* 11:30 am - grab lunch&lt;br /&gt;
* 12-2: NCS group meeting&lt;br /&gt;
* 2-3: seminar to NCS group&lt;br /&gt;
* 3-4: CDS tea&lt;br /&gt;
* 4:00 pm: Open&lt;br /&gt;
* 4:45: Necmiye (130 Steele)&lt;br /&gt;
* 5:30 pm: meeting with Richard&lt;br /&gt;
* 6:00 pm: done&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Abstract:&lt;br /&gt;
&lt;br /&gt;
In formal verification, simple models of software programs and digital circuits are checked against temporal logic properties such as safety (ie., something bad never happens) and liveness (ie., something good eventually happens). While formal verification received a lot of attention, the problem of formal synthesis, where the focus is to construct a provably-correct system (eg., safe by design) is still in its infancy. We propose theoretical frameworks and computational tools for automatic synthesis of robot controllers that are correct-by-construction from specifications given in rich, human-like languages. We consider deterministic, probabilistic, and partially unknown scenarios, in which the dynamics of each robot is modeled as a finite transition system, Markov decision process, and game transition system, respectively. These models allow for the use of (adapted) formal languages as specification languages, tools from formal verification resembling model checking, and different techniques inspired from results in concurrency theory, approximate DP, automata-learning for synthesis of provably-correct control and communication strategies.  We apply the developed algorithms and frameworks to deploy robots in Khepera-based testbeds (i.e., robotic urban-like and indoor-like environments).&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Janos_Sztipanovits,_November_2012&amp;diff=14673</id>
		<title>Janos Sztipanovits, November 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Janos_Sztipanovits,_November_2012&amp;diff=14673"/>
		<updated>2012-11-05T18:12:38Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Janos Sztipanovits from Vanderbilt University is going to be visiting Caltech on Thursday (8 Nov) and will have some time in the afternoon to meet with interested students and postdocs.  &lt;br /&gt;
&lt;br /&gt;
* 3:00: Richard&lt;br /&gt;
* 3:45: Open&lt;br /&gt;
* 4:30: Necmiye&lt;br /&gt;
* 5:15: Open&lt;br /&gt;
* 6:00: Depart&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Ram_Vasudevan,_October_2012&amp;diff=14638</id>
		<title>Ram Vasudevan, October 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Ram_Vasudevan,_October_2012&amp;diff=14638"/>
		<updated>2012-10-17T21:35:23Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* 10:30 - Richard Murray, 109 Steele Lab&lt;br /&gt;
* 11:00 - Seminar, 114 Steele Lab&lt;br /&gt;
* 12:00 - Lunch with Richard, John Doyle + other faculty&lt;br /&gt;
* 1:30 - John Doyle, xxx ANB&lt;br /&gt;
* 2:00 - Mathieu Desbrun, xxx ANB&lt;br /&gt;
* 2:30 - Joel Burdick, 308 Thomas&lt;br /&gt;
* 3:15 - Necmiye, 130 Steele&lt;br /&gt;
* 4:00 - Open&lt;br /&gt;
* 4:45 - Scott Livingston&lt;br /&gt;
* 5:30 - Depart &lt;br /&gt;
&lt;br /&gt;
Identification of Hybrid Dynamical Models of Human Motion via&lt;br /&gt;
Switched System Optimal Control &lt;br /&gt;
&lt;br /&gt;
Ram Vasudevan&lt;br /&gt;
UC Berkeley&lt;br /&gt;
&lt;br /&gt;
Abstract: &lt;br /&gt;
Given the loss of freedom and the slow recovery time common to injuries&lt;br /&gt;
arising due to falls amongst the elderly, the development of techniques&lt;br /&gt;
capable of pinpointing instabilities in gait is critical. Devising an&lt;br /&gt;
algorithm capable of detecting such deficiencies in gait requires&lt;br /&gt;
employing models rich enough to encapsulate the discontinuities in human&lt;br /&gt;
motion that naturally arise due to interaction with the environment.&lt;br /&gt;
Hybrid systems, which describe the evolution of their state both&lt;br /&gt;
continuously via a controlled differential equation and discretely&lt;br /&gt;
according to a control graph or a discrete input, are a class of models&lt;br /&gt;
capable of representing such motion. Many concepts from classical&lt;br /&gt;
dynamical systems, such as stability, have natural analogs in hybrid&lt;br /&gt;
systems, but the application of such notions demands first performing&lt;br /&gt;
identification. &lt;br /&gt;
&lt;br /&gt;
This talk begins by illustrating how a sequence of contact point&lt;br /&gt;
enforcements along with a Lagrangian intrinsic to the human completely&lt;br /&gt;
determines a hybrid system description for periodic human motion. The&lt;br /&gt;
detection of contact point enforcement is then transformed into an optimal&lt;br /&gt;
control problem for constrained switched systems. To resolve this problem,&lt;br /&gt;
two numerically tractable algorithms are constructed. The first approach&lt;br /&gt;
employs a variation that alters the discrete switching input by adding a&lt;br /&gt;
single mode at each iteration of the algorithm. The second approach&lt;br /&gt;
relaxes the discrete switching input and performs optimization over a&lt;br /&gt;
relaxed discrete switching input space. The utility of both approaches is&lt;br /&gt;
illustrated by considering several examples.&lt;br /&gt;
&lt;br /&gt;
Bio:&lt;br /&gt;
Ram Vasudevan received his Ph.D. Candidate in Electrical Engineering and &lt;br /&gt;
Computer Sciences at the University of California Berkeley in 2012. His &lt;br /&gt;
research interests include hybrid systems, biologically inspired robotics, and &lt;br /&gt;
computer vision. He is a Regent&#039;s and Chancellor&#039;s Scholar and a co-recipient &lt;br /&gt;
of the Innovations in Networking Award presented by the Corporation for &lt;br /&gt;
Education Network Initiatives in California. He received his B.S in Electrical &lt;br /&gt;
Engineering and Computer Sciences and M.S. both from the University of &lt;br /&gt;
California Berkeley in 2006 and 2009, respectively.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Aaron_Ames,_October_2012&amp;diff=14612</id>
		<title>Aaron Ames, October 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Aaron_Ames,_October_2012&amp;diff=14612"/>
		<updated>2012-10-08T16:42:22Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Aaron Ames will be visiting Caltech on 11-12 October (Thu-Fri).  If you would like to meet with him, sign up below.&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
==== Thursday (11 Oct) ====&lt;br /&gt;
* 12:00: CDS seminar (114 Steele Lab)&lt;br /&gt;
* 1:15: Richard&lt;br /&gt;
* 2:30: Open&lt;br /&gt;
* 3:15: Open&lt;br /&gt;
* 4:00: Necmiye&lt;br /&gt;
* 4:45: Open&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
==== Friday (12 Oct) ====&lt;br /&gt;
* 9:45: Open&lt;br /&gt;
* 10:30: Open&lt;br /&gt;
* 11:15: Open&lt;br /&gt;
* 12:00: Lunch meeting with John&#039;s group&lt;br /&gt;
* 2:00: Additional discussions (TBD)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Seminar Abstract ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Simplicity on the Far Side of Complexity in the Control of Bipedal Robots&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Speaker:  Aaron Ames&amp;lt;br&amp;gt;&lt;br /&gt;
Affiliation:  ME, Texas A&amp;amp;M&amp;lt;br&amp;gt;&lt;br /&gt;
Date and time:  11 October 2012 - 12:00pm&amp;lt;br&amp;gt;&lt;br /&gt;
Location:  114 Steele Lab&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
Humans have the ability to walk with deceptive ease, navigating everything from daily environments to uneven and uncertain terrain with efficiency and robustness. Despite the simplicity with which humans appear to ambulate, locomotion is inherently complex due to highly nonlinear dynamics and forcing. Yet there is evidence to suggest that humans utilize a hierarchical subdivision between cortical control and central pattern generators in the spinal column, indicating that when humans perform motion primitives potentially simple and characterizable control strategies are implemented, i.e., humans display simplicity on the far side of complexity. If these fundamental mechanisms underlying human walking can be discovered and formally understood, human-like abilities can be imbued into robotic devices with far-reaching applications ranging from legged robots for space exploration to disaster response.&lt;br /&gt;
&lt;br /&gt;
This talk presents the process of formally achieving bipedal robotic walking through controller synthesis inspired by human locomotion, and demonstrates these methods through experimental realization on multiple bipedal robots. Motivated by the hierarchical control present in humans, we claim that the essential information needed to understand walking is encoded by a simple class of functions canonical to human walking. In other words, we view the human as a complex system, or &amp;quot;black box,&amp;quot; and outputs of this system (as computed from human locomotion data) are presented that appear to characterize its behavior—thus yielding low dimensional characterization of human walking. By considering the equivalent outputs for the bipedal robot, a nonlinear controller can be constructed that drives the outputs of the robot to the output of the human; moreover, the parameters of this controller can be optimized so that stable robotic walking is provably achieved while simultaneously producing outputs of the robot that are as close as possible to those of a human. The end result is the automatic generation of bipedal robotic walking that is remarkably human-like and is experimentally realizable, as will be evidenced by the demonstration of the resulting controllers on multiple robotic platforms.&lt;br /&gt;
&lt;br /&gt;
Biography:  Dr. Aaron D. Ames is an Assistant Professor in Mechanical Engineering at Texas A&amp;amp;M University, with a joint appointment in Electrical and Computer Engineering. His research interests center on robotics, nonlinear control, and hybrid and cyber-physical systems, with special emphasis on bipedal robots, behavior unique to hybrid systems such as Zeno behavior, and the mathematical foundations of hybrid systems. Dr. Ames received a BS in Mechanical Engineering and a BA in Mathematics from the University of St. Thomas in 2001, and he received a MA in Mathematics and a PhD in Electrical Engineering and Computer Sciences from UC Berkeley in 2006. At UC Berkeley, he was the recipient of the 2005 Leon O. Chua Award for achievement in nonlinear science and the 2006 Bernard Friedman Memorial Prize in Applied Mathematics. Dr. Ames served as a Postdoctoral Scholar in the Control and Dynamical System Department at the California Institute of Technology from 2006 to 2008. In 2010 he received the NSF CAREER award for his research on hybrid systems and bipedal robotic walking.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Fall_2012&amp;diff=14586</id>
		<title>Group Schedule, Fall 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Fall_2012&amp;diff=14586"/>
		<updated>2012-09-25T19:24:50Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: /* Week 6: 5-9 Nov */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains information about various upcoming events that are of interest to the group. __NOTOC__&lt;br /&gt;
{| width=60%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Schedule|Richard&#039;s calendar (travel)]]&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Group Schedule, Summer 2012]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The schedule for group and subgroup meetings is given below.  Everyone should sign up for times to talk in the subgroup meetings.  Unless otherwise noted, here are the locations of the meetings:&lt;br /&gt;
:{| width=100%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
* Group meetings - 114 Steele Lab&lt;br /&gt;
| width=30% |&lt;br /&gt;
* Biocircuits subgroup - 111 Keck&lt;br /&gt;
| width=30% |&lt;br /&gt;
* NCS subgroup - 110 Steele&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
=== Week 1: 1-5 Oct ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 4 Oct (Thu), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Gita Mahmoudabadi (30 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Zach (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 4 Oct (Thu), 4-5:30 pm&#039;&#039;&#039;&lt;br /&gt;
* Necmiye (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Tue-Wed&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 2: 8-12 Oct ===&lt;br /&gt;
&#039;&#039;&#039;NCS: 10 Oct (Wed), 4:30-6:00 pm&#039;&#039;&#039;&lt;br /&gt;
* Marcella (15 min)&lt;br /&gt;
* Mumu (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 11 Oct (Thu), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Nadine (30 min)&lt;br /&gt;
* Vanessa (15 min)&lt;br /&gt;
* Anu (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Mon, Tue am, Fri pm&lt;br /&gt;
* Aaron Ames visiting on Thu (seminar @ noon)&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 3: 15-19 Oct ===&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
* Biocircuits lab cleanup: 16 Oct (Tue), 10 am - 12 pm&lt;br /&gt;
&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
=== Week 4: 22-26 Oct ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 23 Oct (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Enoch (30 min)&lt;br /&gt;
* Jongmin (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 23 Oct (Tue), 4-5:30 pm&#039;&#039;&#039;&lt;br /&gt;
* Eric (15 min)&lt;br /&gt;
* Scott Livingston (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Ram Vasuvian visiting on Mon (seminar @ 11)&lt;br /&gt;
* DARPA Living Foundries west coast meeting on Thu (Richard out)&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 5: 29 Oct - 2 Nov  ===&lt;br /&gt;
&#039;&#039;&#039;NCS: 31 Oct (Wed), 4:30-6:00 pm&#039;&#039;&#039;&lt;br /&gt;
* Shuo (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 1 Nov (Thu), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Marcella (30 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town on Tue&lt;br /&gt;
* iGEM World Jamboree, Fri-Mon&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 6: 5-9 Nov ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 6 Nov (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Anu (30 min)&lt;br /&gt;
* Emzo (15 min)&lt;br /&gt;
* Nadine (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 7 Nov (Wed), 4:30-6:00 pm&#039;&#039;&#039;&lt;br /&gt;
* Fei (15 min)&lt;br /&gt;
* Necmiye (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 7: 12-16 Nov ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 15 Nov (Thu), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Ophelia (30 min)&lt;br /&gt;
* Zach (15 min)&lt;br /&gt;
* Enoch (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 15 Nov (Thu), 4-5:30 pm&#039;&#039;&#039;&lt;br /&gt;
* Marcella (15 min)&lt;br /&gt;
* Mumu (15 min)&lt;br /&gt;
* Stephanie (15 min)&lt;br /&gt;
* Quentin (15 min)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 8: 19-23 Nov  ===&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
* Biocircuits lab cleanup: 20 Nov (Tue), 10 am - 12 pm&lt;br /&gt;
* Thanksgiving break, Thu-Fri&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
=== Week 9: 26-30 Nov ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 27 Nov (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Vanessa (30 min)&lt;br /&gt;
* Jongmin (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 28 Nov (Wed), 4:30-6:00 pm&#039;&#039;&#039;&lt;br /&gt;
* Eric (15 min)&lt;br /&gt;
* Scott Livingston (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* DARPA breadboards telecon, Thu @ 9:30 am&lt;br /&gt;
* SoCal Control Workshop, Fri (UC San Diego)&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 10: 3-7 Dec ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 4 Dec (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Emzo (30 min)&lt;br /&gt;
* Marcella (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 5 Dec (Wed), 4:30-6:00 pm&#039;&#039;&#039;&lt;br /&gt;
* Shuo (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 11: 10-14 Dec  ===&lt;br /&gt;
* CDC week, no group meetings&lt;br /&gt;
* Biocircuits lab cleanup: 11 Dec (Tue), 10 am - 12 pm&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
=== Week 12: 17-21 Dec ===&lt;br /&gt;
* Winter break, no group meetings&lt;br /&gt;
* Richard around Mon-Thu&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Fall_2012&amp;diff=14585</id>
		<title>Group Schedule, Fall 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Fall_2012&amp;diff=14585"/>
		<updated>2012-09-25T19:24:20Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: /* Week 1: 1-5 Oct */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains information about various upcoming events that are of interest to the group. __NOTOC__&lt;br /&gt;
{| width=60%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Schedule|Richard&#039;s calendar (travel)]]&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Group Schedule, Summer 2012]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The schedule for group and subgroup meetings is given below.  Everyone should sign up for times to talk in the subgroup meetings.  Unless otherwise noted, here are the locations of the meetings:&lt;br /&gt;
:{| width=100%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
* Group meetings - 114 Steele Lab&lt;br /&gt;
| width=30% |&lt;br /&gt;
* Biocircuits subgroup - 111 Keck&lt;br /&gt;
| width=30% |&lt;br /&gt;
* NCS subgroup - 110 Steele&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
=== Week 1: 1-5 Oct ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 4 Oct (Thu), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Gita Mahmoudabadi (30 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Zach (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 4 Oct (Thu), 4-5:30 pm&#039;&#039;&#039;&lt;br /&gt;
* Necmiye (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Tue-Wed&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 2: 8-12 Oct ===&lt;br /&gt;
&#039;&#039;&#039;NCS: 10 Oct (Wed), 4:30-6:00 pm&#039;&#039;&#039;&lt;br /&gt;
* Marcella (15 min)&lt;br /&gt;
* Mumu (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 11 Oct (Thu), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Nadine (30 min)&lt;br /&gt;
* Vanessa (15 min)&lt;br /&gt;
* Anu (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Mon, Tue am, Fri pm&lt;br /&gt;
* Aaron Ames visiting on Thu (seminar @ noon)&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 3: 15-19 Oct ===&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
* Biocircuits lab cleanup: 16 Oct (Tue), 10 am - 12 pm&lt;br /&gt;
&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
=== Week 4: 22-26 Oct ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 23 Oct (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Enoch (30 min)&lt;br /&gt;
* Jongmin (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 23 Oct (Tue), 4-5:30 pm&#039;&#039;&#039;&lt;br /&gt;
* Eric (15 min)&lt;br /&gt;
* Scott Livingston (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Ram Vasuvian visiting on Mon (seminar @ 11)&lt;br /&gt;
* DARPA Living Foundries west coast meeting on Thu (Richard out)&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 5: 29 Oct - 2 Nov  ===&lt;br /&gt;
&#039;&#039;&#039;NCS: 31 Oct (Wed), 4:30-6:00 pm&#039;&#039;&#039;&lt;br /&gt;
* Shuo (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 1 Nov (Thu), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Marcella (30 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town on Tue&lt;br /&gt;
* iGEM World Jamboree, Fri-Mon&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 6: 5-9 Nov ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 6 Nov (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Anu (30 min)&lt;br /&gt;
* Emzo (15 min)&lt;br /&gt;
* Nadine (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 7 Nov (Wed), 4:30-6:00 pm&#039;&#039;&#039;&lt;br /&gt;
* Fei (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 7: 12-16 Nov ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 15 Nov (Thu), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Ophelia (30 min)&lt;br /&gt;
* Zach (15 min)&lt;br /&gt;
* Enoch (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 15 Nov (Thu), 4-5:30 pm&#039;&#039;&#039;&lt;br /&gt;
* Marcella (15 min)&lt;br /&gt;
* Mumu (15 min)&lt;br /&gt;
* Stephanie (15 min)&lt;br /&gt;
* Quentin (15 min)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 8: 19-23 Nov  ===&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
* Biocircuits lab cleanup: 20 Nov (Tue), 10 am - 12 pm&lt;br /&gt;
* Thanksgiving break, Thu-Fri&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
=== Week 9: 26-30 Nov ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 27 Nov (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Vanessa (30 min)&lt;br /&gt;
* Jongmin (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 28 Nov (Wed), 4:30-6:00 pm&#039;&#039;&#039;&lt;br /&gt;
* Eric (15 min)&lt;br /&gt;
* Scott Livingston (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* DARPA breadboards telecon, Thu @ 9:30 am&lt;br /&gt;
* SoCal Control Workshop, Fri (UC San Diego)&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 10: 3-7 Dec ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 4 Dec (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Emzo (30 min)&lt;br /&gt;
* Marcella (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS: 5 Dec (Wed), 4:30-6:00 pm&#039;&#039;&#039;&lt;br /&gt;
* Shuo (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Research update (15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* No group meeting this week&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 11: 10-14 Dec  ===&lt;br /&gt;
* CDC week, no group meetings&lt;br /&gt;
* Biocircuits lab cleanup: 11 Dec (Tue), 10 am - 12 pm&lt;br /&gt;
&lt;br /&gt;
| width=30% |&lt;br /&gt;
=== Week 12: 17-21 Dec ===&lt;br /&gt;
* Winter break, no group meetings&lt;br /&gt;
* Richard around Mon-Thu&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Sebastian_Trimpe,_September_2012&amp;diff=14533</id>
		<title>Sebastian Trimpe, September 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Sebastian_Trimpe,_September_2012&amp;diff=14533"/>
		<updated>2012-09-06T16:37:01Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sebastian Trimpe, a Ph.D. candidate with Prof. Raffaello D&#039;Andrea at the Institute for Dynamic Systems and Control (IDSC) at ETH Zurich, will be visiting CDS on the 13th of Sep. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Schedule ===&lt;br /&gt;
* 11:30 am: Meet with Richard (Steele Lab 109)&lt;br /&gt;
* 12 pm: Richard&#039;s group meeting, 213 Annenberg&lt;br /&gt;
* 1:15pm: Lunch with Richard, possibly John&lt;br /&gt;
* 2:30 pm: Open&lt;br /&gt;
* 3:15 pm: Open&lt;br /&gt;
* 4:00 pm: Necmiye, 130 Steele&lt;br /&gt;
* 4:45 pm: Done&lt;br /&gt;
&lt;br /&gt;
=== Seminar abstract ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Title: &lt;br /&gt;
Event-Based State Estimation for Networked Control Systems&amp;lt;br&amp;gt;&lt;br /&gt;
12-1:15 pm, 13 September 2012, 243 ANB&lt;br /&gt;
&lt;br /&gt;
Abstract:&lt;br /&gt;
The problem of state estimation in a networked control system with multiple sensor-actuator-agents is considered. The agents are spatially distributed along a dynamic system, and they can share their sensor data over a communication bus. The objective is to maintain an estimate of the full system state on each agent while, at the same time, reducing the exchange of sensory data over the network. This work is inspired by the Balancing Cube, a cube that can balance autonomously on any of its corners through the action of six rotating arms, which constitute the agents of the control network (www.cube.ethz.ch).&lt;br /&gt;
&lt;br /&gt;
An event-based approach is used to address the state estimation problem. The common bus allows each agent to run a copy of a so-called common estimator which operates only on the sensory data that has been broadcast over the network. Hence, its estimate represents the common information in the network. Each agent compares its local measurement against the common estimate of that measurement, and it transmits the measurement only if it is required to meet a certain estimation performance. The estimators themselves are implemented as time-varying Kalman filters handling the varying set of available measurements.&lt;br /&gt;
&lt;br /&gt;
Different rules for making the transmit decision are conceivable. One such rule is to transmit a measurement if its associated prediction variance grows too large. For this scenario, the variance of the event-based Kalman filter evolves according to a new type of Riccati iteration with switching based on the available set of measurements. Based on simulation results, the variance sequence typically converges to a periodic solution of the switching Riccati equation. For the scalar, single sensor case, we prove conditions that guarantee the global convergence to a periodic solution.&lt;br /&gt;
&lt;br /&gt;
Experimental results of applying the event-based state estimation techniques for feedback control on the Balancing Cube are discussed.&lt;br /&gt;
&lt;br /&gt;
Bio:&lt;br /&gt;
Sebastian Trimpe is a Ph.D. candidate with Prof. Raffaello D&#039;Andrea at the Institute for Dynamic Systems and Control (IDSC) at ETH Zurich. Sebastian received the B.S. degree in General Engineering Science in 2005 and the M.S. degree (Dipl.-Ing.) in Electrical Engineering two years later, both from Hamburg University of Technology. In 2007, he spent eight months as a research scholar at University of California at Berkeley. He is recipient of the General Engineering Award for the best undergraduate degree (2004), a scholarship from the German National Academic Foundation (2002 to 2007), and the triennial IFAC World Congress Interactive Paper Prize (2011).&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Summer_2012&amp;diff=14259</id>
		<title>Group Schedule, Summer 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Summer_2012&amp;diff=14259"/>
		<updated>2012-06-08T05:37:14Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: /* Week 4: 9-13 July */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains information about various upcoming events that are of interest to the group. __NOTOC__&lt;br /&gt;
{| width=60%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/calendar.html Richard&#039;s calendar (travel)]&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Group Schedule, Spring 2012]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The schedule for group and subgroup meetings is given below.  Everyone should sign up for times to talk in the subgroup meetings.&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 1: 18-22 June ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 21 Jun (Thu), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* SURF introductions (40 min)&lt;br /&gt;
* Ophelia (20-30 min)&lt;br /&gt;
* Shaunak K (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 21 Jun (Thu), 12-1&#039;&#039;&#039;&lt;br /&gt;
* Richard (research overview)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 21 Jun (Thu), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* SURF introductions (20 min)&lt;br /&gt;
* Eric (15-20 min)&lt;br /&gt;
* Clemens (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Mon-Tue&lt;br /&gt;
* SURF students start on Tue&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 2: 25-29 June ===&lt;br /&gt;
* American Control Conference (Montreal)&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 3: 2-6 July ===&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
* Institute holiday on Wed&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 4: 9-13 July ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 10 Jul (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Meeting may shift to Mon, 10a-12p&amp;lt;/font&amp;gt;&lt;br /&gt;
* Victoria (25-30 min)&lt;br /&gt;
* Anu (10-15 min)&lt;br /&gt;
* Jongmin (10-15 min)&lt;br /&gt;
* Instrument: Microscope/CellASIC&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 13 Jul (Fri), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Tim Sullivan (Owhadi group)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 13 Jul (Fri), 1:15-3 pm&#039;&#039;&#039;&lt;br /&gt;
* Stephanie (15-20 min)&lt;br /&gt;
* Necmiye (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Tue pm - Thu (Living Foundries PI meeting)&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 5: 16-20 July ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 17 Jul (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Anu (30-40 min)&lt;br /&gt;
* Zach (10-15 min)&lt;br /&gt;
* SURF: Vinay V (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* Instrument: Computing&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 18 Jul (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Mumu (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 19 Jul (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Chin-Lin Guo (BE)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Shaunak K SURF presentation&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 6: 23-27 July ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 24 Jul (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Emzo (30-40 min)&lt;br /&gt;
* Enoch (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* Instrument: FACSCalibur/Quanta&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 25 Jul (Wed), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Clemens Wiltsche&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 25 Jul (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Pavithra (15-20 min)&lt;br /&gt;
* Clemens (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Thu-Fri&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 7: 30 July - 3 August ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 31 Jul (Tue), 12-1:30 pm&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Lunch meeting; may shift to Thu&amp;lt;/font&amp;gt;&lt;br /&gt;
* Research presentation (30-40 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 1 Aug (Wed), 12-1:30 pm&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Lunch meeting; may shift to Thu&amp;lt;/font&amp;gt;&lt;br /&gt;
* Eric (15-20 min)&lt;br /&gt;
* Ufuk (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* KISS workshop; Richard unavailable&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 8: 6-10 August ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 7 Aug (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Dan (30-40 min)&lt;br /&gt;
* Victoria (10-15 min)&lt;br /&gt;
* Marcella (10-15 min)&lt;br /&gt;
* Instrument: Victor X3/BioTek H1MF&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 8 Aug (Wed), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 8 Aug (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 9: 13-17 August ===&lt;br /&gt;
* Richard out all week&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 10: 20-24 August ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 22 Aug (Wed), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation [non-MPP] (30-40 min)&lt;br /&gt;
* Research presentation [non-MPP] (10-15 min)&lt;br /&gt;
* Research update [non-MPP] (10-15 min)&lt;br /&gt;
* Instrument: freezers/cold room&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 22 Aug (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 23 Aug (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Lea Goentoro (Bi)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* MPP retreat, Sun-Tue&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 11: 27-31 August  ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 28 Aug (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Jongmin (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Instruments: Nanodrop/electroporator&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 29 Aug (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Mumu (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 30 Aug (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town on Fri&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 12: 3-7 September ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 4 Sep (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Marcella  (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Instrument: gel rigs/gel imager&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 5 Sep (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Necmiye (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 6 Sep (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Institute holiday on Mon&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 13: 10-14 September ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 11 Sep (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Zach (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Instrument: PCR machines/centrifuges&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 12 Sep (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Ufuk (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 13 Sep (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out on Fri&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 14: 17-21 September  ===&lt;br /&gt;
* Richard out all week&lt;br /&gt;
|&lt;br /&gt;
=== Week 15: 24-28 September ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 25 Sep (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Enoch (30-40 min)&lt;br /&gt;
* Emzo (10-15 min)&lt;br /&gt;
* Dan (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 26 Sep (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Stephanie (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 26 Sep (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out on Mon&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Summer_2012&amp;diff=14258</id>
		<title>Group Schedule, Summer 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Summer_2012&amp;diff=14258"/>
		<updated>2012-06-08T05:35:12Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: /* Week 12: 3-7 September */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains information about various upcoming events that are of interest to the group. __NOTOC__&lt;br /&gt;
{| width=60%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/calendar.html Richard&#039;s calendar (travel)]&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Group Schedule, Spring 2012]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The schedule for group and subgroup meetings is given below.  Everyone should sign up for times to talk in the subgroup meetings.&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 1: 18-22 June ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 21 Jun (Thu), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* SURF introductions (40 min)&lt;br /&gt;
* Ophelia (20-30 min)&lt;br /&gt;
* Shaunak K (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 21 Jun (Thu), 12-1&#039;&#039;&#039;&lt;br /&gt;
* Richard (research overview)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 21 Jun (Thu), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* SURF introductions (20 min)&lt;br /&gt;
* Eric (15-20 min)&lt;br /&gt;
* Clemens (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Mon-Tue&lt;br /&gt;
* SURF students start on Tue&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 2: 25-29 June ===&lt;br /&gt;
* American Control Conference (Montreal)&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 3: 2-6 July ===&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
* Institute holiday on Wed&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 4: 9-13 July ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 10 Jul (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Meeting may shift to Mon, 10a-12p&amp;lt;/font&amp;gt;&lt;br /&gt;
* Victoria (25-30 min)&lt;br /&gt;
* Anu (10-15 min)&lt;br /&gt;
* Jongmin (10-15 min)&lt;br /&gt;
* Instrument: Microscope/CellASIC&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 13 Jul (Fri), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Tim Sullivan (Owhadi group)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 13 Jul (Fri), 1:15-3 pm&#039;&#039;&#039;&lt;br /&gt;
* Stephanie (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Tue pm - Thu (Living Foundries PI meeting)&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 5: 16-20 July ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 17 Jul (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Anu (30-40 min)&lt;br /&gt;
* Zach (10-15 min)&lt;br /&gt;
* SURF: Vinay V (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* Instrument: Computing&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 18 Jul (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Mumu (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 19 Jul (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Chin-Lin Guo (BE)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Shaunak K SURF presentation&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 6: 23-27 July ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 24 Jul (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Emzo (30-40 min)&lt;br /&gt;
* Enoch (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* Instrument: FACSCalibur/Quanta&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 25 Jul (Wed), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Clemens Wiltsche&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 25 Jul (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Pavithra (15-20 min)&lt;br /&gt;
* Clemens (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Thu-Fri&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 7: 30 July - 3 August ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 31 Jul (Tue), 12-1:30 pm&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Lunch meeting; may shift to Thu&amp;lt;/font&amp;gt;&lt;br /&gt;
* Research presentation (30-40 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* SURF update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 1 Aug (Wed), 12-1:30 pm&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Lunch meeting; may shift to Thu&amp;lt;/font&amp;gt;&lt;br /&gt;
* Eric (15-20 min)&lt;br /&gt;
* Ufuk (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* KISS workshop; Richard unavailable&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 8: 6-10 August ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 7 Aug (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Dan (30-40 min)&lt;br /&gt;
* Victoria (10-15 min)&lt;br /&gt;
* Marcella (10-15 min)&lt;br /&gt;
* Instrument: Victor X3/BioTek H1MF&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 8 Aug (Wed), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 8 Aug (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 9: 13-17 August ===&lt;br /&gt;
* Richard out all week&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 10: 20-24 August ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 22 Aug (Wed), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation [non-MPP] (30-40 min)&lt;br /&gt;
* Research presentation [non-MPP] (10-15 min)&lt;br /&gt;
* Research update [non-MPP] (10-15 min)&lt;br /&gt;
* Instrument: freezers/cold room&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 22 Aug (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 23 Aug (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Lea Goentoro (Bi)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* MPP retreat, Sun-Tue&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 11: 27-31 August  ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 28 Aug (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Jongmin (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Instruments: Nanodrop/electroporator&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 29 Aug (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Mumu (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 30 Aug (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town on Fri&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 12: 3-7 September ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 4 Sep (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Marcella  (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Instrument: gel rigs/gel imager&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 5 Sep (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Necmiye (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 6 Sep (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Institute holiday on Mon&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 13: 10-14 September ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 11 Sep (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Zach (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Instrument: PCR machines/centrifuges&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 12 Sep (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Ufuk (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 13 Sep (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out on Fri&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 14: 17-21 September  ===&lt;br /&gt;
* Richard out all week&lt;br /&gt;
|&lt;br /&gt;
=== Week 15: 24-28 September ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 25 Sep (Tue), 10 am - 12 pm&#039;&#039;&#039;&lt;br /&gt;
* Enoch (30-40 min)&lt;br /&gt;
* Emzo (10-15 min)&lt;br /&gt;
* Dan (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 26 Sep (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Stephanie (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 26 Sep (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out on Mon&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Spring_2012&amp;diff=14129</id>
		<title>Group Schedule, Spring 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Spring_2012&amp;diff=14129"/>
		<updated>2012-05-23T02:34:28Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains information about various upcoming events that are of interest to the group. __NOTOC__&lt;br /&gt;
{| width=60%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/calendar.html Richard&#039;s calendar (travel)]&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Group Schedule, Winter 2012]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The schedule for group and subgroup meetings is given below.  Everyone should sign up for times to talk in the subgroup meetings.&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 1: 2-6 Apr ===&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 2 Apr (Mon), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Clemens (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&amp;lt;s&amp;gt;Group meeting: 3 Apr (Tue), 12-1:15&amp;lt;/s&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 3 Apr (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min)&lt;br /&gt;
* Jongmin (10-15 min)&lt;br /&gt;
* Zach (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Thu-Fri&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 2: 9-13 Apr ===&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 3: 16-20 Apr ===&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 16 Apr (Mon), 1-3 pm&#039;&#039;&#039;&lt;br /&gt;
* Eric (15-20 min)&lt;br /&gt;
* Scott Livingston (15-20 min)&lt;br /&gt;
* Shuo (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 19 Apr (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Mumu&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 19 Apr (Thu), &amp;lt;font color=blue&amp;gt;2-4 pm&amp;lt;/font&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* Anu (10-15 min)&lt;br /&gt;
* Shaunak (10-15 min)&lt;br /&gt;
* Victoria (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Tue-Wed&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 4: 23-27 Apr ===&lt;br /&gt;
* Richard out of town Mon-Thu&lt;br /&gt;
* Pete Trautman thesis defense (Fri)&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 5: 30 Apr - 4 May ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 1 May (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Paul (30-40 min)&lt;br /&gt;
* Dan (10-15 min)&lt;br /&gt;
* Nikki(10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 2 May (Wed), &amp;lt;font color=blue&amp;gt;9:30-11:30 am&amp;lt;/font&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Stephanie (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 3 May (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Marcella &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Vivek Mutalik visiting on Thu&lt;br /&gt;
* Domitilla Del Vecchio visiting Thu, Fri&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 6: 7 May - 11 May ===&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 8 May (Tue), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Dan&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 8 May (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Chris Kempes (30-40 min)&lt;br /&gt;
* Emzo (10-15 min)&lt;br /&gt;
* Enoch (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 9 May (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Clemens (15-20 min)&lt;br /&gt;
* Scott Livingston (15-20 min)&lt;br /&gt;
* Mumu (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Prabhir Barooha will be visiting on Thu&lt;br /&gt;
* Richard out of town on Fri&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 7: 14-18 May ===&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 8: 21-25 May ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 22 May (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Zach (30-40 min)&lt;br /&gt;
* Jongmin (10-15 min)&lt;br /&gt;
* Open (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: &amp;lt;font color=blue&amp;gt;24 May (Thu)&amp;lt;/font&amp;gt;, 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Scott Livingston (15-20 min)&lt;br /&gt;
* Necmiye (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 24 May (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 9: 28 May -  1 Jun ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 29 May (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Enoch (30-40 min)&lt;br /&gt;
* Shaunak (10-15 min)&lt;br /&gt;
* Nikki (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 30 May (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Research update(15-20 min)&lt;br /&gt;
* Qi (15-20 min)&lt;br /&gt;
* Stephanie (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 31 May (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Shuo&lt;br /&gt;
&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 10: 4 Jun - 8 Jun ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 5 Jun (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Anu (30-40 min)&lt;br /&gt;
* Dan (10-15 min)&lt;br /&gt;
* Marcella (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 6 Jun (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Scott Livingston (15-20 min)&lt;br /&gt;
* Ufuk (15-20 min)&lt;br /&gt;
* Pavithra (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 7 Jun (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Emzo&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 11: 11-15 Jun ===&lt;br /&gt;
* Richard out of town Mon-Wed&lt;br /&gt;
* Commencement on Fri&lt;br /&gt;
|&lt;br /&gt;
=== Week 12: 18-22 Jun ===&lt;br /&gt;
* First week of SURF&lt;br /&gt;
* Summer schedule TBD&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Prabir_Barooah,_May_2012&amp;diff=13980</id>
		<title>Prabir Barooah, May 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Prabir_Barooah,_May_2012&amp;diff=13980"/>
		<updated>2012-05-06T22:56:21Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Prabir Barooah will be visiting Caltech on 10 May (Thu).&lt;br /&gt;
&lt;br /&gt;
=== Agenda ===&lt;br /&gt;
&lt;br /&gt;
* 10:30: Richard Murray, 109 Steele Lab&lt;br /&gt;
* 11:00: Seminar, Steele Lab library&lt;br /&gt;
* 12:00: Lunch with faculty: Richard + TBD&lt;br /&gt;
* 1:15: Necmiye&lt;br /&gt;
* 2:00: Open&lt;br /&gt;
* 2:45: Open&lt;br /&gt;
* 3:30: Open&lt;br /&gt;
* 4:15: Open&lt;br /&gt;
* 5:00: Done for the day&lt;br /&gt;
&lt;br /&gt;
=== Abstract ===&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Improving robot localization by using robot-to-robot relative measurements in cooperative multi-robot teams&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Thursday, 10 May 2012 - 11:00am, 114 Steele Lab&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Localization of robots without GPS (or intermittentGPS) is a capability that is required of autonomous robots in several application domains. These include under water, in urban canyons, with poor line of sight to satellites, with adversarial GPS jamming, etc.&lt;br /&gt;
Localization by integrating self-motion measurements from on-board sensors such as IMUs/cameras lead to large growth of estimation error. This limits how long a robot can operate effectively without GPS. In a team of collaborative robots, however, there is an opportunity to do better. A robot can occasionally measure another robot&#039;s relative pose/position/bearing, usually by using vision-based sensors. This information, when fused with self-motion measurements, can lead to location estimates that are substantially more accurate than what can be obtained with self-motion measurements alone.&lt;br /&gt;
&lt;br /&gt;
In this talk we will describe a class of algorithms for fusing relative measurements to estimate the pose (position and orientation)&lt;br /&gt;
of robots in a collaborative team. Due to the unknown orientations that are to be estimated, the problem becomes an optimization problem over a Riemannian manifold. A least-squares and (approximate) maximum likelihood estimator are developed. The least-squares version can be made distributed: it requires limited communication between nearby robots, but no centralized data exchange is needed. In each case, a gradient descent on the manifold is used to compute the estimates. Much of the earlier work in collaborative pose estimation was limited to 2-D case, the formulation we adopt allows to handle 3-D scenario with no additional difficulty. As is often the case, a number of unanswered questions remain, some of which will be discussed.&lt;br /&gt;
&lt;br /&gt;
=== Brief Bio ===&lt;br /&gt;
&lt;br /&gt;
Prabir Barooah was born in Jorhat, Assam (India). He received the Ph.D. degree in Electrical and Computer Engineering in 2007 from the University of California, Santa Barbara. From 1999 to 2002 he was a research engineer at United Technologies Research Center, East Hartford, CT. He received the M. S. degree in Mechanical Engineering from the University of Delaware in 1999 and the B.Tech degree in Mechanical Engineering from the Indian Institute of Technology, Kanpur, in 1996. Dr. Barooah is the winner of the NSF CAREER award (2010), General Chairs&#039; Recognition Award for Interactive papers at the 48th IEEE Conference on Decision and Control (2009), best paper award at the 2nd Int. Conf. on Intelligent Sensing and Information Processing (2005), and NASA group achievement award (2003).&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Spring_2012&amp;diff=13796</id>
		<title>Group Schedule, Spring 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Spring_2012&amp;diff=13796"/>
		<updated>2012-03-21T06:36:57Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains information about various upcoming events that are of interest to the group. __NOTOC__&lt;br /&gt;
{| width=60%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/calendar.html Richard&#039;s calendar (travel)]&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Group Schedule, Winter 2012]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The schedule for group and subgroup meetings is given below.  Everyone should sign up for times to talk in the subgroup meetings.&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 1: 2-6 Apr ===&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 2 Apr (Mon), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 3 Apr (Tue), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 3 Apr (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Thu-Fri&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 2: 9-13 Apr ===&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 3: 16-20 Apr ===&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 16 Apr (Mon), 1-3 pm&#039;&#039;&#039;&lt;br /&gt;
* Eric (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 19 Apr (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Emzo&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 19 Apr (Thu), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min)&lt;br /&gt;
* Shaunak (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Richard out of town Tue-Wed&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 4: 23-27 Apr ===&lt;br /&gt;
* Richard out of town Mon-Thu&lt;br /&gt;
* Pete Trautman thesis defense (Fri)&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 5: 30 Apr - 4 May ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 1 May (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 2 May (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 3 May (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 6: 7 May - 11 May ===&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 8 Mar (Tue), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 8 May (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 9 May (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
* Prabhir Barooha will be visiting on Thu&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 7: 14-18 May ===&lt;br /&gt;
* Richard out of town all week&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 8: 21-25 May ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 22 May (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 23 May (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Eric (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 24 May (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 9: 28 May -  1 Jun ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 29 May (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min)&lt;br /&gt;
* Shaunak (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 30 May (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Necmiye (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 31 May (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 10: 4 Jun - 8 Jun ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 5 Jun (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Emzo (30-40 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS/Robotics: 6 Jun (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Research update (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 7 Jun (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 11: 11-15 Jun ===&lt;br /&gt;
* Richard out of town Mon-Wed&lt;br /&gt;
* Commencement on Fri&lt;br /&gt;
|&lt;br /&gt;
=== Week 12: 18-22 Jun ===&lt;br /&gt;
* First week of SURF&lt;br /&gt;
* Summer schedule TBD&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Feb/Mar_2012_Meetings&amp;diff=13682</id>
		<title>Feb/Mar 2012 Meetings</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Feb/Mar_2012_Meetings&amp;diff=13682"/>
		<updated>2012-02-20T17:34:48Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I would like to meet with everyone sometime in the last week of Feb/first week of March.  Please sign up for a time below (note that the slots are different lengths). __NOTOC__&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
&#039;&#039;&#039;In Santa Barbara&#039;&#039;&#039; (Vanessa, Ophelia, Dan, Shaunak)&lt;br /&gt;
==== Tue, 28 Feb ====&lt;br /&gt;
* 4:00p - Open (60m)&lt;br /&gt;
* 5:00p - Open (60m)&lt;br /&gt;
==== Wed, 29 Feb ====&lt;br /&gt;
* 10:00a - Open (60m)&lt;br /&gt;
* 3:30p - Open (60m)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Thu, 1 Mar ====&lt;br /&gt;
* 3:00p - Biocircuits subgroup (Dan, Zach, Ophelia)&lt;br /&gt;
* 5:00p - Open (45m)&lt;br /&gt;
* 5:45p - Necmiye (45m)&lt;br /&gt;
* 6:30p - Open (60m)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
==== Fri, 2 Mar ====&lt;br /&gt;
* 9:00a - Open (60m)&lt;br /&gt;
* 10:00a - Eugene Lavretsky (75m)&lt;br /&gt;
* 11:15a - Hold, Eugene (45m)&lt;br /&gt;
:&lt;br /&gt;
* 12:00p - Group meeting&lt;br /&gt;
* 1:15p - NCS subgroup (Mumu, Pavithra)&lt;br /&gt;
* 3:00p - Open (45m)&lt;br /&gt;
* 3:45p - Open (60m)&lt;br /&gt;
* 4:45p - Open (45m)&lt;br /&gt;
* 5:30p - Open (60m)&lt;br /&gt;
| width=50% |&lt;br /&gt;
&lt;br /&gt;
==== Mon, 5 Mar ====&lt;br /&gt;
* 9:00a - Open (60m)&lt;br /&gt;
* 10:00a - BE 150&lt;br /&gt;
* 11:00a - Open (45m)&lt;br /&gt;
* 11:45a - Open (45m)&lt;br /&gt;
:&lt;br /&gt;
* 1:00p - Open (60m)&lt;br /&gt;
* 2:00p - Open (60m)&lt;br /&gt;
* 3:00p - Robotics subgroup (Pete, Andrea)&lt;br /&gt;
* 4:30p - Open (60m)&lt;br /&gt;
* 5:30p - Open (60m)&lt;br /&gt;
* 6:30p - Open (60m)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
==== Tue, 6 Mar ====&lt;br /&gt;
* 9:00a - Open (60m)&lt;br /&gt;
* 10:00a -Open (60m)&lt;br /&gt;
* 11:00a - Hold: CDS 90 (60m)&lt;br /&gt;
&lt;br /&gt;
* 2:00p - Hold: CDS 90 (60m)&lt;br /&gt;
* 3:00p - Biocircuits subgroup (Enoch, Vanessa, Victoria)&lt;br /&gt;
* 5:00p - iGEM&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Gabor_Orosz,_Feb_2012&amp;diff=13642</id>
		<title>Gabor Orosz, Feb 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Gabor_Orosz,_Feb_2012&amp;diff=13642"/>
		<updated>2012-02-16T07:09:26Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Gabor Orosz, an Assistant Professor at U. Michigan, will be visiting Caltech on 21-22 Feb (Tue-Wed).&lt;br /&gt;
&lt;br /&gt;
=== Schedule ===&lt;br /&gt;
&lt;br /&gt;
==== 21 Feb (Tue) ====&lt;br /&gt;
&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|~10:00a|Marcella Gomez, meet in Steele library}}&lt;br /&gt;
{{agenda item|11:00p|Seminar: Marta Kwiatkowska}}&lt;br /&gt;
{{agenda item|12:00p|Lunchtime seminar: Gabor Orosz}}&lt;br /&gt;
{{agenda item|1:00p|Richard and Marcella (109 Steele)}}&lt;br /&gt;
{{agenda item|2:00p|Open}}&lt;br /&gt;
{{agenda item|3:00p|Biocircuits subgroup}}&lt;br /&gt;
{{agenda item|5:00p|Paul Nguyen}}&lt;br /&gt;
{{agenda end}}&lt;br /&gt;
&lt;br /&gt;
==== 22 Feb (Wed) ====&lt;br /&gt;
&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|9:30a|Open}}&lt;br /&gt;
{{agenda item|10:15a|Open}}&lt;br /&gt;
{{agenda item|11:00p|Seminar: Marta Kwiatkowska}}&lt;br /&gt;
{{agenda item|12:00p|Lunch}}&lt;br /&gt;
{{agenda item|1:30p|Necmiye}}&lt;br /&gt;
{{agenda item|2:15p|Open}}&lt;br /&gt;
{{agenda item|3:00p|CDS tea, Annenberg Loung}}&lt;br /&gt;
{{agenda item|3:45p|Open}}&lt;br /&gt;
{{agenda item|4:30p|Open}}&lt;br /&gt;
{{agenda end}}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Hiro_Ono_visit,_February_2012&amp;diff=13607</id>
		<title>Hiro Ono visit, February 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Hiro_Ono_visit,_February_2012&amp;diff=13607"/>
		<updated>2012-02-05T02:06:21Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Masahiro (Hiro) Ono, who recently got his PhD with Brian Williams at MIT, will visit CDS on 7 Feb 2012 (Tue).&lt;br /&gt;
&lt;br /&gt;
=== Schedule ===&lt;br /&gt;
* 10:30 am: Richard Murray, 109 Steele Lab&lt;br /&gt;
* 11:00 am: CDS seminar, 114 Steele&lt;br /&gt;
* 12:00 pm: Lunch with Necmiye Ozay + 2&lt;br /&gt;
** Richard will join at ~1 pm (so try for a table on the patio -:)&lt;br /&gt;
* 1:30 pm: Eric&lt;br /&gt;
* 2:15 pm: Necmiye&lt;br /&gt;
* 3:00 pm: Open&lt;br /&gt;
* 3:45 pm: Open&lt;br /&gt;
* 4:30 pm: Open&lt;br /&gt;
&lt;br /&gt;
=== Abstract ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;font size=&amp;quot;+1&amp;quot;&amp;gt;&#039;&#039;&#039;Risk Allocation Approach to Chance-constrained Model Predictive Control&#039;&#039;&#039;&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Steele Library, 11 am&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This talk presents solutions to two problems in the domain&lt;br /&gt;
of chance-constrained model predictive control. A chance-constrained&lt;br /&gt;
MPC problem requires that a set of state constraints are satisfied&lt;br /&gt;
with a user-specified probability, in the presence of unbounded&lt;br /&gt;
additive uncertainty.&lt;br /&gt;
&lt;br /&gt;
First, we consider decentralized finite-horizon optimal control for&lt;br /&gt;
multi-agent systems. The problem is particularly difficult when agents&lt;br /&gt;
are coupled through a joint chance constraint, which limits the&lt;br /&gt;
probability of constraint violation by any of the agents in the&lt;br /&gt;
system. We propose a dual decomposition-based algorithm, namely&lt;br /&gt;
Market-based Iterative Risk Allocation (MIRA), that solves the&lt;br /&gt;
multi-agent problem in a decentralized manner. The algorithm addresses&lt;br /&gt;
the issue of scalability by letting each agent optimize its own&lt;br /&gt;
control input given a fixed value of a dual variable, which is shared&lt;br /&gt;
among agents. A central module optimizes the dual variable by solving&lt;br /&gt;
a root-finding problem iteratively. MIRA gives exactly the same&lt;br /&gt;
optimal solution as the centralized optimization approach since it&lt;br /&gt;
reproduces the KKT conditions of the centralized approach. Our&lt;br /&gt;
approach is analogous to a price adjustment process in a competitive&lt;br /&gt;
market called tatonnement or Walrasian auction: each agent optimizes&lt;br /&gt;
its demand for risk at a given price, while the central module (or the&lt;br /&gt;
market) optimizes the price of risk, which corresponds to the dual&lt;br /&gt;
variable.&lt;br /&gt;
&lt;br /&gt;
Second, we consider receding horizon control of dynamic systems under&lt;br /&gt;
unbounded uncertainty.  Resolvability or recursive feasibility is an&lt;br /&gt;
essential property for robust model predictive controllers. However,&lt;br /&gt;
when an unbounded stochastic uncertainty is present, it is generally&lt;br /&gt;
impossible to guarantee resolvability. We propose a new concept called&lt;br /&gt;
probabilistic resolvability. A model predictive control (MPC)&lt;br /&gt;
algorithm is probabilistically resolvable if it has feasible solutions&lt;br /&gt;
at future time steps with a certain probability, given a feasible&lt;br /&gt;
solution at the current time. We propose a joint chance-constrained&lt;br /&gt;
MPC algorithm that guarantees probabilistic resolvability. The&lt;br /&gt;
proposed algorithm also guarantees the satisfaction of a joint chance&lt;br /&gt;
constraint, which specifies a lower bound on the probability of&lt;br /&gt;
satisfying a set of state constraints over a finite horizon.&lt;br /&gt;
Furthermore, with moderate conditions, the finite-horizon optimal&lt;br /&gt;
control problem solved at each time step in the proposed algorithm is&lt;br /&gt;
a convex optimization problem.&lt;br /&gt;
&lt;br /&gt;
==== Biography ====&lt;br /&gt;
Masahiro Ono received a B.S. degree in Aeronautics and&lt;br /&gt;
Astronautics at the University of Tokyo, an M.S. degree in Technology&lt;br /&gt;
and Policy, and M.S. and Ph.D. degrees in Aeronautics and Astronautics&lt;br /&gt;
at MIT. His research is in chance-constrained model predictive control&lt;br /&gt;
and its applications to multiagent systems and smart buildings. He&lt;br /&gt;
recently accepted a faculty position at Keio University in Japan.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Ian_Manchester,_Jan_2012&amp;diff=13530</id>
		<title>Ian Manchester, Jan 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Ian_Manchester,_Jan_2012&amp;diff=13530"/>
		<updated>2012-01-25T03:17:25Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ian Manchester will visit CDS on 25 Jan 2012 (Wed).  If you would like to meet with him, please sign up below.&lt;br /&gt;
&lt;br /&gt;
* 12:30pm-2:00pm: Lunch and discussion; please sign up here if you want to join the lunch &lt;br /&gt;
meet at west gate of second floor @ Annenberg, outside classroom 213&lt;br /&gt;
* 2:00-3:00pm: Talk; place: TBA &lt;br /&gt;
* 3:00-3:30: Necmiye (maybe chat @ CDS tea)&lt;br /&gt;
* 3:30-4:00: open&lt;br /&gt;
* 4:00-4:30: open&lt;br /&gt;
* 4:30-5:00: open&lt;br /&gt;
* 5:00-5:30: open&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;font size=&amp;quot;+1&amp;quot; color=blue&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ian Machester&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
MIT&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
Title: TBA&lt;br /&gt;
&lt;br /&gt;
Abstract: TBA&lt;br /&gt;
&lt;br /&gt;
=== Biography ===&lt;br /&gt;
&lt;br /&gt;
Ian Manchester received the BE (Hons 1) and PhD degrees in Electrical Engineering from the University of New South Wales, Sydney. He was then a post-doc and guest lecturer at Umeå University, Sweden. He is presently a Research Scientist with the Robot Locomotion Group, Massachusetts Institute of Technology. For the last 2 yrs he was working with Alex Megretski and Russ Tedrake, mostly on convex optimization algorithms for nonlinear system identification and analysis. A particular focus has been identifying and analyzing systems with autonomous oscillations (limit cycles) including live neurons in culture, and walking robots.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Laurent_Lessard,_Feb_2012&amp;diff=13515</id>
		<title>Laurent Lessard, Feb 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Laurent_Lessard,_Feb_2012&amp;diff=13515"/>
		<updated>2012-01-24T01:34:39Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Laurent Lessard will visit CDS on 6 Feb 2012 (Mon).  If you would like to meet with him, please sign up below.&lt;br /&gt;
&lt;br /&gt;
* 10:00: Open&lt;br /&gt;
* 11:00: Seminar, 114 Steele Lab&lt;br /&gt;
* 12:00: Lunch, Athenaeum - with Richard &amp;amp; Sachin&lt;br /&gt;
* 1:00: Richard, 109 Steele Laboratory&lt;br /&gt;
* 2:00: Necmiye&lt;br /&gt;
* 2:45: Open&lt;br /&gt;
* 3:30: Open&lt;br /&gt;
* 4:15: Open&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;font size=&amp;quot;+1&amp;quot; color=blue&amp;gt;The Two Player Problem&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Laurent Lessard&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
LTH&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Abstract:  In decentralized control problems, multiple decision-makers collaborate to achieve a common global objective despite not having access to the same information about the system. Such architectures are inevitable as large systems such as the power grid continue to become more complex. In this talk, we consider a fundamental decentralized optimal control problem: two interconnected linear subsystems with a partially nested information pattern and output feedback. Our main contribution is an explicit minimal state-space realization of the optimal controller, which was previously not known. The solution we present provides much more than just a formula; it gives us the state dimension of the optimal controller, and reveals precisely what sort of estimation and control structure is optimal. This structure is different from the Kalman Filter/LQR separation one would expect in a classical LQG scenario, yet there is no increase in computational complexity for finding the optimal controller. This work provides a first step toward a state-space theory for decentralized control.&lt;br /&gt;
&lt;br /&gt;
=== Biography ===&lt;br /&gt;
Laurent Lessard is a post doctoral researcher at Lund University, Sweden. His research interests include decentralized control, optimization, and finding computationally tractable approaches for complex engineering applications. Prior to coming to Lund, he received a BASc degree in Engineering Science at the University of Toronto in 2003, and a PhD degree in Aeronautics and Astronautics from Stanford University in 2011.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Naira_Hovakimyan,_Jan_2012&amp;diff=13504</id>
		<title>Naira Hovakimyan, Jan 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Naira_Hovakimyan,_Jan_2012&amp;diff=13504"/>
		<updated>2012-01-19T06:02:05Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Naira Hovakimyan will visit CDS on 16 Jan 2012 (Thu).  If you would like to meet with her, please sign up below.&lt;br /&gt;
&lt;br /&gt;
* 10:30: Richard, 109 Steele Laboratory&lt;br /&gt;
* 11:00: Marin, meet in 109 Steele&lt;br /&gt;
* 11:45: Seminar setup&lt;br /&gt;
* 12:00: Seminar, 114 Steele&lt;br /&gt;
* 1:00: Lunch - Richard&lt;br /&gt;
* 2:00: Ufuk, meet in Steele&lt;br /&gt;
* 2:45: Pavithra&lt;br /&gt;
* 3:30: Necmiye&lt;br /&gt;
* 4:15: Open&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;font size=&amp;quot;+1&amp;quot; color=blue&amp;gt;L1 Adaptive Control and Its Transition to Practice&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Naira Hovakimyan&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
UIUC&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Abstract:  The history of adaptive control systems dates back to early 50-s, when the aeronautical community was struggling to advance aircraft speeds to higher Mach numbers. In November of 1967, X-15 launched on what was planned to be a routine research flight to evaluate a boost guidance system, but it went into a spin and eventually broke up at 65,000 feet, killing the pilot Michael Adams. It was later found that the onboard adaptive control system was to be blamed for this incident. Exactly thirty years later, fueled by advances in the theory of nonlinear control, Air Force successfully flight tested the unmanned unstable tailless X-36 aircraft with an onboard adaptive flight control system. This was a landmark achievement that dispelled some of the misgivings that had arisen from the X-15 crash in 1967. Since then, numerous flight tests of Joint Direct Attack Munitions (JDAM) weapon retrofitted with adaptive element have met with great success and have proven the benefits of the adaptation in the presence of component failures and aerodynamic uncertainties. However, the major challenge related to stability/robustness assessment of adaptive systems is still being resolved based on testing the closed-loop system for all possible variations of uncertainties in Monte Carlo simulations, the cost of which increases with the growing complexity of the systems. This talk will give an overview of the limitations inherent to the conventional adaptive controllers and will introduce the audience to the L1 adaptive control theory, the architectures of which have guaranteed robustness in the presence of fast adaptation. Various applications, including flight tests of a subscale commercial jet, will be discussed during the presentation to demonstrate the tools and the concepts. With its key feature of decoupling adaptation from robustness L1 adaptive control theory has facilitated new developments in the areas of event-driven adaptation and networked control systems. A brief overview of initial results and potential directions will conclude the presentation.&lt;br /&gt;
&lt;br /&gt;
=== Biography ===&lt;br /&gt;
&lt;br /&gt;
Naira Hovakimyan received her MS degree in Theoretical Mechanics and Applied Mathematics in 1988 from Yerevan State University in Armenia. She got her Ph.D. in Physics and Mathematics in 1992, in Moscow, from the Institute of Applied Mathematics of Russian Academy of Sciences, majoring in optimal control and differential games. In 1997 she has been awarded a governmental postdoctoral scholarship to work in INRIA, France. In 1998 she was invited to the School of Aerospace Engineering of Georgia Tech, where she worked as a research faculty member until 2003. In 2003 she joined the Department of Aerospace and Ocean Engineering of Virginia Tech, and in 2008 she moved to University of Illinois at Urbana-Champaign, where she is a professor, university scholar and Schaller faculty scholar of Mechanical Science and Engineering. She has co-authored a book and more than 250 refereed publications.  She is the recipient of the SICE International scholarship for the best paper of a young investigator in the VII ISDG Symposium (Japan, 1996), and also the 2011 recipient of AIAA Mechanics and Control of Flight award. She is an associate fellow and life member of AIAA, a Senior Member of IEEE, and a member of SIAM, AMS and ISDG. Her current interests are in the theory of robust adaptive control and estimation, control in the presence of limited information, networks of autonomous systems, game theory and applications of those in safety-critical systems of aerospace, mechanical, electrical and biomedical engineering.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=SURF_2012:_Aircraft_electric_power_system_modeling_in_SIMULINK/Stateflow&amp;diff=13393</id>
		<title>SURF 2012: Aircraft electric power system modeling in SIMULINK/Stateflow</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=SURF_2012:_Aircraft_electric_power_system_modeling_in_SIMULINK/Stateflow&amp;diff=13393"/>
		<updated>2011-12-31T03:25:44Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;[[SURF 2012|2012 SURF]] project description&#039;&#039;&#039;&lt;br /&gt;
* Mentor: Richard Murray&lt;br /&gt;
* Co-mentor: Ufuk Topcu, Mumu Xu and Necmiye Ozay&lt;br /&gt;
&lt;br /&gt;
The electric power system (EPS) of an aircraft provides electric power to all of its subsystems and typically consists of a combination of generators, switches, and loads. Electric power is distributed via one or more buses, and connection of generators to loads is routed by way of a series of electronic control switches (contactors). In current practice, the (discrete) control logic that opens and closes these contactors is designed by hand and its correctness is assured by exhaustive testing. As an alternative, automatic embedded controller synthesis methods can be used. In particular, our group investigates use of the Temporal Logic Planning Toolbox, TuLiP [1], to synthesize control logic for contactors that react the health conditions of different components of the system.  A sample power system model for a traditional aircraft is available from MATLAB SimPowerSystems toolbox [2]. The first part of this project aims at developing a simulation model in Simulink for a more complex power system and combining it with TuLiP controllers in order to run mixed simulations (with both continuous evolution and discrete decisions). A second goal of the project is to investigate---using the model developed in the first phase---sensor placement and design trade-offs between the number of sensors used versus reliability of fault diagnosis. A working copy of a high-level description of EPS challenge problem can be obtained from one of the co-mentors. &lt;br /&gt;
&lt;br /&gt;
Possible steps of the project include:&lt;br /&gt;
* Developing a SIMULINK model for the electric power system starting from a fairly complete single line diagram (SLD). Exporting TuLiP automata that implement the control logic to this simulation model to enable mixed analog discrete simulations. Designing an input file for the simulation where one can easily specify and test different dynamic fault scenarios. &lt;br /&gt;
* Searching different sensors and sensing modalities used for diagnostics in aircraft electric power systems (voltage, current measurements, etc) and modeling them in Simulink (if such models do not already exist). Developing mathematical models for such sensors and investigating how these sensors should be placed within the power system to reliably (e.g., with high probability) diagnose possible faults within the system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Required Skills:&#039;&#039; This project requires programming experience, in particular familiarity with MATLAB and Simulink. Knowledge of basic circuit theory would be useful. Some working knowledge of continuous/discrete optimization tools is a plus.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;References&#039;&#039;&#039;&lt;br /&gt;
# T. Wongpiromsarn, U. Topcu, N. Ozay, H. Xu, and R.~M. Murray, TuLiP: a software toolbox for receding horizon temporal logic planning.  International Conference on Hybrid Systems: Computation and Control, 2011 (software available at http://tulip-control.sourceforge.net).&lt;br /&gt;
# Aircraft Electrical Power Generation and Distribution, http://www.mathworks.com/products/simpower/demos.html?file=/products/demos/shipping/powersys/power_aircraft_distribution.html.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Winter_2012&amp;diff=13317</id>
		<title>Group Schedule, Winter 2012</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Winter_2012&amp;diff=13317"/>
		<updated>2011-12-09T20:30:17Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains information about various upcoming events that are of interest to the group. __NOTOC__&lt;br /&gt;
{| width=60%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/calendar.html Richard&#039;s calendar (travel)]&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Group Schedule, Fall 2011]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The schedule for group and subgroup meetings is given below.  Everyone should sign up for times to talk in the subgroup meetings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=red&amp;gt;&lt;br /&gt;
==== Directions: ====&lt;br /&gt;
* &#039;&#039;&#039;Biocircuits (Tue or Thu, 3-5 pm)&#039;&#039;&#039;: graduate students should give 1 longer presentation per term + 1-2 additional research updates; postdocs, undergrads should give 1-2 research updates.&lt;br /&gt;
* &#039;&#039;&#039;NCS (Wed, 4-6 pm)&#039;&#039;&#039;: grad students should speak 2 times per term for 15-20 min (+ discussion), postdocs and undergrads at least once&lt;br /&gt;
* &#039;&#039;&#039;Robotics (Wed, 4-6 pm)&#039;&#039;&#039;: grad students and postdocs should speak 2 times per term for 15-20 min (+ discussion), undergrads at least once; will also do ad hoc updates&lt;br /&gt;
* &#039;&#039;&#039;Group meeting talks (WThF, 12-1:15)&#039;&#039;&#039;: postdocs and senior grad students (G4+) should feel free to sign up for a group meeting talk (biocircuit grad students: this can be in place of longer subgroup talk)&lt;br /&gt;
&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Please sign up for at least one presentation in the first six weeks of the term.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=blue&amp;gt;Note that some of the meetings might need to shift, as noted; only sign up for those slots if you can make both times listed&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 1: 4-6 Jan ===&lt;br /&gt;
&#039;&#039;&#039;NCS: 4 Jan (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Jun Liu (15-20 min)&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 5 Jan (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Ophelia&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 5 Jan (Thu), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Safety briefing (30-40 min) &lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
Academic holiday, 2-3 Jan&amp;lt;br&amp;gt;&lt;br /&gt;
CDS quals, 6 Jan (RMM busy all day)&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 2: 9-13 Jan ===&lt;br /&gt;
&#039;&#039;&#039;Robotics: 11 Jan (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Shuo (15-20 min)&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Short research updates (5 min each)&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Might shift to Fri, 1-3 pm&amp;lt;/font&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 12 Jan (Thu), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min) &lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 13 Jan (Fri), 12-1:15 pm&#039;&#039;&#039;&lt;br /&gt;
* Domitilla Del Vecchio (MIT)&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 3: 16-20 Jan ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 17 Jan (Tue), 2-4 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min) &lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Shaunak (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Note time shift in day (to &amp;quot;regular&amp;quot; day)&amp;lt;/font&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;NCS: 18 Jan (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Eric (15-20 min)&lt;br /&gt;
* Necmiye (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 19 Jan (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Naira Hovakimyan (UIUC)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 4: 23-27 Jan ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 24 Jan (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min) &lt;br /&gt;
* Emzo (10-15 min)&lt;br /&gt;
* Enoch (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 25 Jan (Wed), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Necmiye&lt;br /&gt;
&#039;&#039;&#039;Robotics: 25 Jan (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Stephanie (15-20 min)&lt;br /&gt;
* Pete (15-20 min)&lt;br /&gt;
* Short research updates (5 min each)&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Might shift to Fri, 1-3 pm&amp;lt;/font&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 5: 30 Jan - 3 Feb ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 31 Jan (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min) &lt;br /&gt;
* Nikki(10-15 min)&lt;br /&gt;
* Zach (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;NCS: 1 Feb (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Ufuk (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 2 Feb (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Jongmin&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 6: 6 Feb - 10 Feb ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 7 Feb (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min) &lt;br /&gt;
* Paul (10-15 min)&lt;br /&gt;
* Victoria (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 8 Feb (Wed), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Andrea&lt;br /&gt;
&#039;&#039;&#039;Robotics: 8 Feb (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Short research updates (5 min each)&lt;br /&gt;
&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 7: 13-17 Feb ===&lt;br /&gt;
&#039;&#039;&#039;NCS: 15 Feb (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 16 Feb (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Open&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 16 Feb (Thu), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Safety briefing (30-40 min) &lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Note change in day&amp;lt;/font&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 8: 20-24 Feb ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 21 Feb (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Research presentation (30-40 min) &lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;Robotics: 22 Feb (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Shuo (15-20 min)&lt;br /&gt;
* Eric (15-20 min)&lt;br /&gt;
* Short research updates (5 min each)&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 23 Feb (Thu), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Hold: possible job talk&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 9: 27 Feb - 2 Mar ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 28 Feb (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Safety briefing (30-40 min) &lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Will probably shift to 2 Mar, 3-5 pm&amp;lt;/font&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;NCS: 29 Feb (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Project updates&lt;br /&gt;
* &amp;lt;font color=blue&amp;gt;Will probably shift to 2 Mar, 1-3 pm&amp;lt;/font&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 2 Mar (Fri), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Shaunak&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 10: 5-9 Mar ===&lt;br /&gt;
&#039;&#039;&#039;Biocircuits: 6 Mar (Tue), 3-5 pm&#039;&#039;&#039;&lt;br /&gt;
* Enoch (30-40 min) &lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Research update (10-15 min)&lt;br /&gt;
* Lab updates&lt;br /&gt;
&#039;&#039;&#039;Robotics: 7 Mar (Wed), 4-6 pm&#039;&#039;&#039;&lt;br /&gt;
* Pete (15-20 min)&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Short research updates (5 min each)&lt;br /&gt;
&#039;&#039;&#039;Group meeting: 9 Mar (Fri), 12-1:15&#039;&#039;&#039;&lt;br /&gt;
* Hold: possible job talk&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 11: 12-16 Mar ===&lt;br /&gt;
Finals week;  Richard out of town&lt;br /&gt;
|&lt;br /&gt;
=== Week 12: 19-23 Mar ===&lt;br /&gt;
Spring break; Richard out of town&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Dec_2011_meetings&amp;diff=13255</id>
		<title>Dec 2011 meetings</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Dec_2011_meetings&amp;diff=13255"/>
		<updated>2011-12-07T09:00:10Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The list below has times that I am available to meet on 15-21 Dec. __NOTOC__&lt;br /&gt;
* Please pick a time that works and fill in your name.  If none of the times work, send me e-mail (or find someone else who has a slot that does work and see if you can switch). &lt;br /&gt;
* To maximize the chance I get to meet with everyone, &#039;&#039;&#039;please sign up for times on 19-22 Dec if you are around that week&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;table width=100% border=1&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=top&amp;gt;&amp;lt;td width=20%&amp;gt;&lt;br /&gt;
==== 15 Dec (Thu) ====&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|10:00a|Enoch}}&lt;br /&gt;
{{agenda item|11:00a|Victoria}}&lt;br /&gt;
{{agenda item||}}&lt;br /&gt;
{{agenda item|4:30p|Shaunak}}&lt;br /&gt;
{{agenda item|5:30p|Hamed}}&lt;br /&gt;
{{agenda item|6:30p|Chris Kempes}}&lt;br /&gt;
{{agenda end}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td width=20%&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 16 Dec (Fri) ====&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|10:00a|Open}}&lt;br /&gt;
{{agenda item|11:00a|Open}}&lt;br /&gt;
{{agenda item||}}&lt;br /&gt;
{{agenda item|2:30p|Shuo}}&lt;br /&gt;
{{agenda item|3:30p|Jongmin/Shaunak}}&lt;br /&gt;
{{agenda item|4:30p|Dominic}}&lt;br /&gt;
{{agenda item|5:30p|Andrea}}&lt;br /&gt;
{{agenda end}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td width=20%&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 19 Dec (Mon) ====&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|12:30p|Mumu}}&lt;br /&gt;
{{agenda item|1:30p|Lab inspection}}&lt;br /&gt;
{{agenda item||}}&lt;br /&gt;
{{agenda item|5:00p|Ophelia}}&lt;br /&gt;
{{agenda end}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td width=20%&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 20 Dec (Tue) ====&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|10:00a| Scott Livingston}}&lt;br /&gt;
{{agenda item|11:00a|Open}}&lt;br /&gt;
{{agenda item||}}&lt;br /&gt;
{{agenda item|2:00p|Open}}&lt;br /&gt;
{{agenda item|3:00p|dan}}&lt;br /&gt;
{{agenda item|4:00p|Jongmin}}&lt;br /&gt;
{{agenda end}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;td width=20%&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 21 Dec (Wed) ====&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|11:30a|Open}}&lt;br /&gt;
{{agenda item||}}&lt;br /&gt;
{{agenda item|2:00p| Pavithra}}&lt;br /&gt;
{{agenda item|4:00p|Open}}&lt;br /&gt;
{{agenda item|5:00p| Necmiye}}&lt;br /&gt;
{{agenda end}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Fall_2011&amp;diff=13000</id>
		<title>Group Schedule, Fall 2011</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Fall_2011&amp;diff=13000"/>
		<updated>2011-09-23T00:25:40Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains information about various upcoming events that are of interest to the group. __NOTOC__&lt;br /&gt;
{| width=60%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/calendar.html Richard&#039;s calendar (travel)]&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Group Schedule, Summer 2011]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The schedule for group and subgroup meetings is given below.  Everyone should sign up for times to talk in the subgroup meetings.&lt;br /&gt;
* Biocircuits: everyone should speak 2-3 times per term&lt;br /&gt;
* NCS/robotics: grad student should speak 2 times per term, postdocs and undergrads at least once&lt;br /&gt;
* Students/postdocs applying for jobs: if you want to give a &amp;quot;job talk&amp;quot; in group meeting, let me know &lt;br /&gt;
Note that some of the meetings might need to shift; only sign up for those slots if you can make both times listed&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=30% |&lt;br /&gt;
=== Week 1: 26-30 Sep ===&lt;br /&gt;
27 Sep (Tue), 1-3 pm: Biocircuits&lt;br /&gt;
* Paul Nguyen&lt;br /&gt;
* Vanessa Jonsson &lt;br /&gt;
* Open (10-15 min)&lt;br /&gt;
28 Sep (Wed), 12 pm: Group meeting &lt;br /&gt;
* Hold: Pavrithra Prabhakar&lt;br /&gt;
28 Sep (Wed), 1-3 pm: NCS&lt;br /&gt;
* Richard (Boeing report)&lt;br /&gt;
* Scott Livingston&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 2: 3-7 Oct ===&lt;br /&gt;
3 Oct (Mon), 12 pm: Group meeting &lt;br /&gt;
* Dan Siegal-Gaskins&lt;br /&gt;
4 Oct (Tue), 1-3 pm; Biocircuits&lt;br /&gt;
* Enoch (10-15 min)&lt;br /&gt;
* Jongmin (10-15 min)&lt;br /&gt;
* Open (10-15 min)&lt;br /&gt;
5 Oct (Wed), 1-3 pm: Robotics&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Dom&lt;br /&gt;
* &#039;&#039;Note&#039;&#039;: might shift to 3:30-5 pm&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
ARO synthetic biology workshop Thu-Fri&lt;br /&gt;
* Possible lab tours on Fri morning&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
=== Week 3: 10-14 Oct ===&lt;br /&gt;
No group meeting &lt;br /&gt;
&lt;br /&gt;
11 Oct (Tue), &amp;lt;font color=blue&amp;gt;12:30-2 pm&amp;lt;/font&amp;gt;: Biocircuits&lt;br /&gt;
* Shaunak (10-15 min)&lt;br /&gt;
* Open (10-15 min)&lt;br /&gt;
* Open (10-15 min)&lt;br /&gt;
12 Oct (Wed), 1-3 pm: NCS&lt;br /&gt;
* Jun (15-20 min)&lt;br /&gt;
* Ufuk (15-20 min)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
Rob Wood visiting on 11 Oct (Tue)&lt;br /&gt;
&lt;br /&gt;
Boeing Annual Review on 12 Oct (Wed)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 4: 17-21 Oct ===&lt;br /&gt;
18 Oct (Tue), 1-3 pm: Biocircuits&lt;br /&gt;
* Elisa&lt;br /&gt;
* Marcella (10-15 min)&lt;br /&gt;
* Open (10-15 min)&lt;br /&gt;
19 Oct (Wed), 12 pm: Group meeting &lt;br /&gt;
* Hold: job talk&lt;br /&gt;
19 Oct (Wed), 1-3 pm: Robotics&lt;br /&gt;
* Shuo (15-20 min)&lt;br /&gt;
* pete (15-20 min)&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 5: 24-28 Oct ===&lt;br /&gt;
25 Oct (Tue), &amp;lt;font color=blue&amp;gt;10:30-12&amp;lt;/font&amp;gt;: Biocircuits&lt;br /&gt;
* Enoch (10-15 min)&lt;br /&gt;
* Vanessa Jonsson&lt;br /&gt;
* &#039;&#039;Note&#039;&#039;: might shift to 12:30-2 pm&lt;br /&gt;
26 Oct (Wed), 12 pm: Group meeting &lt;br /&gt;
* Hold: job talk&lt;br /&gt;
26 Oct (Wed), &amp;lt;font color=blue&amp;gt;3:30-5 pm&amp;lt;/font&amp;gt;: NCS&lt;br /&gt;
* Mumu (15-20 min)&lt;br /&gt;
* Linlin (15-20 min)&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 6: 31 Oct - 4 Nov ===&lt;br /&gt;
1 Nov (Tue), 1-3 pm; Biocircuits&lt;br /&gt;
* dsg&lt;br /&gt;
* Open (10-15 min)&lt;br /&gt;
* Open (10-15 min)&lt;br /&gt;
2 Nov (Wed), 1-3 pm: Robotics&lt;br /&gt;
* Stephanie (15-20 min)&lt;br /&gt;
* Scott Livingston&lt;br /&gt;
3 Nov (Thu), 12 pm: Group meeting &lt;br /&gt;
* Hold: Qi Song (incoming visitor)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 7: 7-11 Nov ===&lt;br /&gt;
&amp;lt;font color=blue&amp;gt;7 Nov (Mon), 12:30-2:30 pm&amp;lt;/font&amp;gt;: Biocircuits&lt;br /&gt;
* Enoch (10-15 min)&lt;br /&gt;
* Shaunak (10-15 min)&lt;br /&gt;
10 Nov (Thu), 12 pm: Group meeting &lt;br /&gt;
* Hold: job talk&lt;br /&gt;
&amp;lt;font color=blue&amp;gt;10 Nov (Thu), 1-3 pm&amp;lt;/font&amp;gt;: NCS&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
* Necmiye (15-20 min)&lt;br /&gt;
* &#039;&#039;Note&#039;&#039;: Might move to Mon, 2:30-4 pm &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
Richard out of town Tue-Wed, possibly Thu-Fri&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 8: 14-18 Nov ===&lt;br /&gt;
No group meeting&lt;br /&gt;
&lt;br /&gt;
No biocircuits meeting&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=blue&amp;gt;18 Nov (Thu), 4-5:30 pm&amp;lt;/font&amp;gt;: Robotics&lt;br /&gt;
* Shuo (15-20 min)&lt;br /&gt;
* pete (15-20 min)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
Richard out of town Tue-Wed&lt;br /&gt;
&lt;br /&gt;
MuSyC workshop/review Wed-Fri&lt;br /&gt;
&lt;br /&gt;
MPP STC proposal meeting, 13-14 Nov&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 9: 21-25 Nov ===&lt;br /&gt;
22 Nov (Tue), &amp;lt;font color=blue&amp;gt;12:30-2 pm&amp;lt;/font&amp;gt;: Biocircuits&lt;br /&gt;
* Elisa&lt;br /&gt;
* Marcella (10-15 min)&lt;br /&gt;
* Open (10-15 min)&lt;br /&gt;
23 Nov (Wed), 12 pm: group meeting&lt;br /&gt;
* Dionysios&lt;br /&gt;
23 Nov (Wed), 1-3 pm: NCS&lt;br /&gt;
* Mumu (15-20 min)&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
Thanksgiving holiday: Thu-Fri&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 10: 28 Nov - 2 Dec ===&lt;br /&gt;
29 Nov (Tue), 1-3 pm: Biocircuits&lt;br /&gt;
* Vanessa Jonsson&lt;br /&gt;
* dsg&lt;br /&gt;
* Open (10-15 min)&lt;br /&gt;
30 Nov (Wed), 12 pm: Group meeting &lt;br /&gt;
* Hold: job talk&lt;br /&gt;
30 Nov (Wed), 1-3 pm: Robotics&lt;br /&gt;
* Dom&lt;br /&gt;
* Open (15-20 min)&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
=== Week 11: 5-9 Dec ===&lt;br /&gt;
Final weeks week, Richard out of town&lt;br /&gt;
&lt;br /&gt;
No group or subgroup meetings&lt;br /&gt;
|&lt;br /&gt;
=== Week 12: 12-16 Dec ===&lt;br /&gt;
CDC week, Richard (probably) in town&lt;br /&gt;
&lt;br /&gt;
Group and subgroup meetings TBD&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Summer_2011&amp;diff=12839</id>
		<title>Group Schedule, Summer 2011</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Summer_2011&amp;diff=12839"/>
		<updated>2011-07-21T23:31:00Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This page contains information about various upcoming events that are of interest to the group.&lt;br /&gt;
{| width=60%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [http://www.cds.caltech.edu/~murray/calendar.html Richard&#039;s calendar (travel)]&lt;br /&gt;
| width=50% |&lt;br /&gt;
* [[Group Schedule, Spring 2011]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Summer Schedule ===&lt;br /&gt;
&lt;br /&gt;
{| border=1 width=100%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| &#039;&#039;&#039;Week&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Mini-group meetings&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Group meeting&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Other&#039;&#039;&#039;&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
===== 13-17 Jun =====&lt;br /&gt;
|&lt;br /&gt;
None&lt;br /&gt;
| &lt;br /&gt;
None&lt;br /&gt;
| &lt;br /&gt;
RMM out all week&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
===== 20-24 Jun =====&lt;br /&gt;
|&lt;br /&gt;
* iGEM: Mon @ 9:30&lt;br /&gt;
* SURF meetings, cycle 0: (sign on at [[SURF 2011]] page)&lt;br /&gt;
* NCS: Tue, 1-2:30 pm&lt;br /&gt;
** Speaker 1: Necmiye (discussion)&lt;br /&gt;
** Speaker 2: Linlin&lt;br /&gt;
|&lt;br /&gt;
Tue @ 12: Necmiye&lt;br /&gt;
|&lt;br /&gt;
RMM out 22-24 Jun&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 27 Jun - 1 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* iGEM: Mon, &amp;lt;font color=blue&amp;gt;9:30a-10:30a&amp;lt;/font&amp;gt;&lt;br /&gt;
* Robotics: Mon, 1-3 pm&lt;br /&gt;
** Speaker 1: Sandeep&lt;br /&gt;
** Speaker 2: Sawyer&lt;br /&gt;
* Biocircuits: Tue, 9a-2p&lt;br /&gt;
** Overview presentations (all; 10 min each)&lt;br /&gt;
** Lunch will be provided&lt;br /&gt;
* SURF meetings, cycle 1: Tue pm&lt;br /&gt;
** 4:00 pm: Yuchen and Ufuk&lt;br /&gt;
** 4:30 pm: Klavdia and Sawyer&lt;br /&gt;
** 5:00 pm: Ishan and Jongmin&lt;br /&gt;
** 5:30 pm: Sandeep and Scott&lt;br /&gt;
** 6:00 pm: Arjun and Emzo&lt;br /&gt;
| &lt;br /&gt;
Mon @ 12: Nils Napp&lt;br /&gt;
|&lt;br /&gt;
* Nils Napp visiting&lt;br /&gt;
* Sean Meyn visiting&lt;br /&gt;
* RMM out 29 Jun-1 Jul (ACC)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 4-8 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* Biocircuits: Tue, 10-12&lt;br /&gt;
** Speaker 1: Marcella&lt;br /&gt;
** Speaker 2: Joe&lt;br /&gt;
** Speaker 3: Vanessa&lt;br /&gt;
* iGEM: Tue, &amp;lt;font color=blue&amp;gt;5:30-6:30p&amp;lt;/font&amp;gt;&lt;br /&gt;
* NCS: Thu, 1-3 pm&lt;br /&gt;
** Speaker 3: Scott Livingston&lt;br /&gt;
** Speaker 4: Jun Liu&lt;br /&gt;
* SURF meetings, cycle 1: Thu pm&lt;br /&gt;
** 3:00 pm: Magnus and Andrea&lt;br /&gt;
** 3:30 pm: Paul and Joe&lt;br /&gt;
** 4:00 pm: Petter and Necmiye&lt;br /&gt;
** 4:30 pm: Stephanie and Necmiye&lt;br /&gt;
** 5:00 pm: Keshav and Emzo&lt;br /&gt;
&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12: Henrik Sandberg&lt;br /&gt;
|&lt;br /&gt;
* Institute holiday on Mon&lt;br /&gt;
* Eric Colinet visiting on 5 Jul&lt;br /&gt;
* Henrik Sandberg visiting 3-9 Jul&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 11-15 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;11 Jul (Mon)&#039;&#039;&#039;, &amp;lt;font color=blue&amp;gt;9:30a-10:30a&amp;lt;/font&amp;gt;: iGEM&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;font color=blue&amp;gt;13 Jul (Wed),&amp;lt;/font&amp;gt;&#039;&#039;&#039;, 1p-3p: Robotics&lt;br /&gt;
** Speaker 3: Shuo&lt;br /&gt;
** Speaker 4: Andrea&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;font color=blue&amp;gt;14 Jul (Thu)&amp;lt;/font&amp;gt;, 10a-12p&#039;&#039;&#039;: Biocircuits&lt;br /&gt;
** Speaker 4: Ophelia&lt;br /&gt;
** Speaker 5: Emzo&lt;br /&gt;
** SURF 1: Paul&lt;br /&gt;
* &#039;&#039;&#039;21 Jul (Thu)&#039;&#039;&#039;: SURF meetings, cycle 2: &lt;br /&gt;
** 3:00 pm: Klavdia&lt;br /&gt;
** 3:30 pm: Andrea and Magnus&lt;br /&gt;
** 4:00 pm: Hold: Arjun&lt;br /&gt;
** 4:30 pm: Ishan and Jongmin&lt;br /&gt;
| &lt;br /&gt;
&#039;&#039;&#039;&amp;lt;font color=blue&amp;gt;14 Jul (Thu)&amp;lt;/font&amp;gt;&#039;&#039;&#039; @ 12: Dan Wilhelm, &amp;lt;font color=blue&amp;gt; 107 ANB&amp;lt;/font&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 18-22 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;21 Jul (Thu)&#039;&#039;&#039;: SURF meetings, cycle 2&lt;br /&gt;
** 2:30p: Petter and Necmiye&lt;br /&gt;
** 3:00p: Keshav and Emzo&lt;br /&gt;
** 3:30p: Yuchen and Necmiye&lt;br /&gt;
** 4:00p: Klavdia and Sawyer&lt;br /&gt;
** 4:30p: Stephanie and Necmiye&lt;br /&gt;
* &#039;&#039;&#039;21 Jul (Thu), 5-6p&#039;&#039;&#039;: iGEM (110 Steele)&lt;br /&gt;
* &#039;&#039;&#039;22 Jul (Fri), 10a-12p&#039;&#039;&#039;: Biocircuits subgroup&lt;br /&gt;
** Speaker 6: Ye Yuan&lt;br /&gt;
** Speaker 7: Dionysios&lt;br /&gt;
** iGEM presentation (30 min)&lt;br /&gt;
* &#039;&#039;&#039;22 Jul (Fri), 1p-3p&#039;&#039;&#039;: Robotics&lt;br /&gt;
** Speaker 5: pete&lt;br /&gt;
** SURF 1: Magnus&lt;br /&gt;
** SURF 2: Stephanie&lt;br /&gt;
* &#039;&#039;&#039;22 Jul (Fri), 3p-5p&#039;&#039;&#039;: NCS&lt;br /&gt;
** Speaker 5: Mumu&lt;br /&gt;
** Speaker 6: Ufuk&lt;br /&gt;
** SURF 1: Petter&lt;br /&gt;
| &lt;br /&gt;
&#039;&#039;&#039;22 Jul (Fri), 12p&#039;&#039;&#039;:   Mark Balas&lt;br /&gt;
|&lt;br /&gt;
* RMM out 18-21 Jul am&lt;br /&gt;
* Josh Michener visiting 22 Jul&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 25-29 Jul =====&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
* RMM out 25-29 Jul&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 1-5 Aug =====&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;4 Aug (Thu)&#039;&#039;&#039;, 5-6 pm: iGEM&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;font color=blue&amp;gt;4 Aug (Thu)&amp;lt;/font&amp;gt;&#039;&#039;&#039;, 10a-12p: Biocircuits&lt;br /&gt;
** Speaker 8: Marcella&lt;br /&gt;
** SURF 2: Ishan&lt;br /&gt;
** SURF 3: Arjun&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;font color=blue&amp;gt;4 Aug (Thu)&amp;lt;/font&amp;gt;&#039;&#039;&#039;, 1p-3p, NCS: &lt;br /&gt;
** Speaker 7: Scott Livingston&lt;br /&gt;
** Speaker 8: Eric&lt;br /&gt;
** SURF 2: Yuchen&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;font color=blue&amp;gt;4 Aug (Thu)&amp;lt;/font&amp;gt;&#039;&#039;&#039;: SURF meetings, cycle 3&lt;br /&gt;
** 3:00p: Klavdia and Sawyer&lt;br /&gt;
** 3:30p: Yuchen, Ufuk, Necmiye&lt;br /&gt;
** 4:00p: Petter, Ufuk, Necmiye&lt;br /&gt;
** 4:30p: open&lt;br /&gt;
** 5:00p: open&lt;br /&gt;
| &lt;br /&gt;
&#039;&#039;&#039;&amp;lt;font color=blue&amp;gt;11 Aug (Thu)&amp;lt;/font&amp;gt;&#039;&#039;&#039; @ 12: Marin Kobilarov&lt;br /&gt;
|&lt;br /&gt;
* RMM out 1-3 Aug&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 8-12 Aug =====&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;9 Aug (Tue)&#039;&#039;&#039;, 1p-3p: Robotics&lt;br /&gt;
** Speaker 6: open&lt;br /&gt;
** SURF 3: Klavdia&lt;br /&gt;
* &#039;&#039;&#039;9 Aug (Tue)&#039;&#039;&#039;: SURF meetings, cycle 3: &lt;br /&gt;
** 3:00p: open&lt;br /&gt;
** 3:30p: Keshav and Emzo&lt;br /&gt;
** 4:00p: Ishan and Jongmin&lt;br /&gt;
** 4:30p: Stephanie and Necmiye&lt;br /&gt;
* &#039;&#039;&#039;11 Aug (Thu), 10a-12p&#039;&#039;&#039;: Biocircuits&lt;br /&gt;
** Speaker 9: Jongmin&lt;br /&gt;
** Speaker 10: Shaunak&lt;br /&gt;
** SURF 4: Keshav&lt;br /&gt;
* &#039;&#039;&#039;11 Aug (Thu), 5p-6p&#039;&#039;&#039;: iGEM: &lt;br /&gt;
| &lt;br /&gt;
&#039;&#039;&#039;11 Aug (Thu)&#039;&#039;&#039; @ 12: Hold, Noel du Toit&lt;br /&gt;
|&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 15-19 Aug =====&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
RMM out 15-19 Aug&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 22-26 Aug =====&lt;br /&gt;
|&lt;br /&gt;
* iGEM: Mon, &amp;lt;font color=blue&amp;gt;9a-10a&amp;lt;/font&amp;gt;&lt;br /&gt;
* Biocircuits: Mon, 10a-12p&lt;br /&gt;
** Speaker 11: open&lt;br /&gt;
** Speaker 12: Enoch Yeung&lt;br /&gt;
** Speaker 13: open&lt;br /&gt;
* Robotics: Mon, 1p-3p&lt;br /&gt;
** Speaker 7: open&lt;br /&gt;
** Speaker 8: open&lt;br /&gt;
* NCS: Mon, 3p-5p&lt;br /&gt;
** Speaker 9: Linlin&lt;br /&gt;
** Speaker 10: Necmiye&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
RMM out: 25 Aug (pm) - 1 Sep (pm)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 29 Aug - 2 Sep =====&lt;br /&gt;
|&lt;br /&gt;
* Robotics: Thu, 1-3p&lt;br /&gt;
** Speaker 9: Shuo&lt;br /&gt;
** Speaker 10: Pete&lt;br /&gt;
* NCS: Thu, 3-5p&lt;br /&gt;
** Speaker 11: Open&lt;br /&gt;
** Speaker 12: Eric&lt;br /&gt;
* iGEM: Thu, 5p-6p&lt;br /&gt;
* Biocircuits; Fri, 10a-12p&lt;br /&gt;
** Speaker 14: Ophelia&lt;br /&gt;
** Speaker 15: open&lt;br /&gt;
** Speaker 16: open&lt;br /&gt;
&lt;br /&gt;
| &lt;br /&gt;
Fri @ 12p (tentative): speaker TBD &lt;br /&gt;
|&lt;br /&gt;
* RMM out: 25 Aug (pm) - 1 Sep (pm)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 5-9 Sep =====&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
* RMM out, 5-9 Sep&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
===== 12-16 Sep =====&lt;br /&gt;
|&lt;br /&gt;
* Biocircuits: Tue, 10a-12p&lt;br /&gt;
** Speaker 17: Emzo&lt;br /&gt;
** Speaker 18: open&lt;br /&gt;
** Speaker 19: open&lt;br /&gt;
* NCS: Wed, 1p-3p&lt;br /&gt;
** Speaker 13: Mumu&lt;br /&gt;
** Speaker 14: Ufuk&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12p: Doug MacMynowski&lt;br /&gt;
|&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 19-23 Sep =====&lt;br /&gt;
|&lt;br /&gt;
* Robotics: Mon, 1p-3p&lt;br /&gt;
** Speaker 11: Asghar&lt;br /&gt;
** Speaker 12: Andrea&lt;br /&gt;
* Biocircuits: Tue, 10a-12p&lt;br /&gt;
** Speaker 20: open&lt;br /&gt;
** Speaker 21: Enoch Yeung&lt;br /&gt;
** Speaker 22: open&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12p: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
RMM out, 20 Sep (pm) to 23 Sep&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Nils_Napp,_June_2011&amp;diff=12747</id>
		<title>Nils Napp, June 2011</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Nils_Napp,_June_2011&amp;diff=12747"/>
		<updated>2011-06-23T03:48:40Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://soslab.ee.washington.edu/mw/index.php/User:Napp Nils Napp] will be visiting from Harvard on 27 June (Mon).  He will give a talk in my group meeting on some of his recent work at Harvard.&lt;br /&gt;
&lt;br /&gt;
=== Schedule ===&lt;br /&gt;
&lt;br /&gt;
Monday:&lt;br /&gt;
* 9:45a - 10:30a: Open (if all other slots are full)&lt;br /&gt;
* 10:30a - 11:15a: Open (if all other slots are full)&lt;br /&gt;
* 11:15a-12p: Richard, 109 Steele&lt;br /&gt;
* 12p-1p: Group meeting presentation, 214 Steele&lt;br /&gt;
* 1:15p - 2:00p: Genti Buzi&lt;br /&gt;
* 2:00p - 2:45p: Open&lt;br /&gt;
* 3:00p - 4:00p: Elisa Franco PhD defense, 107 ANB&lt;br /&gt;
* 4:00 - 4:45p: Necmiye Ozay, CDS Library&lt;br /&gt;
&lt;br /&gt;
=== Research description ===&lt;br /&gt;
&lt;br /&gt;
Broadly, my research focuses on the control of stochastically interacting things. My goal is to steer global system behavior in the face of random, but tunable, behavior of individual sub components. How do natural systems achieve high reliability while being built from unreliable, stochastic sub components? What is the right level of abstraction for modeling such systems, especially when the number of sub components is large?&lt;br /&gt;
I&#039;ve worked mostly with robotic test-beds where randomness is introduced by choice to give robustness, scalability, or simply to explore control strategies. However, many of the ideas come from my interactions with the synthetic biologists in our research group. Currently, I&#039;m thinking about control strategies for a particular system model, Stochastic Reaction Networks.&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=SURF_2011&amp;diff=12699</id>
		<title>SURF 2011</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=SURF_2011&amp;diff=12699"/>
		<updated>2011-06-15T17:14:47Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended for students working on SURF projects in the Summer of 2011.  Mainly for meet to keep track of everything that is going on. __NOTOC__&lt;br /&gt;
&lt;br /&gt;
=== Students ===&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|-&lt;br /&gt;
| Student&lt;br /&gt;
| Mini-group&lt;br /&gt;
| Co-mentor(s)&lt;br /&gt;
| Project&lt;br /&gt;
| Comments&lt;br /&gt;
|-&lt;br /&gt;
| Chandrasekhar, Arjun || Biocircuits || (Emzo) || Simulac || &lt;br /&gt;
|-&lt;br /&gt;
| Chinchali, Sandeep || Robotics || Scott || LTL grasping ||&lt;br /&gt;
|-&lt;br /&gt;
| Håkansson, Magnus || Robotics || Andrea || Bootstrapping ||&lt;br /&gt;
|-&lt;br /&gt;
| Khetarpal, Ishan || Biocircuits || Jongmin || Event detector ||&lt;br /&gt;
|-&lt;br /&gt;
| Lin, Yuchen || NCS || Necmiye, Scott || TuLiP user interface ||&lt;br /&gt;
|-&lt;br /&gt;
| Nguyen, Paul || Biocircuits || Joe || sRNA delay circuits ||&lt;br /&gt;
|-&lt;br /&gt;
| Nilsson, Peter || NCS || Necmiye, Ufuk || TuLiP abstraction algorithms ||&lt;br /&gt;
|-&lt;br /&gt;
| Sapatnekar, Keshav || Biocircuits || Emzo || Scaffold protein sensor ||&lt;br /&gt;
|-&lt;br /&gt;
| Tsuei, Stephanie || Robotics || Necmiye || Distributed camera network ||&lt;br /&gt;
|-&lt;br /&gt;
| Zemlianova, Klavdia || Robotics || (Sawyer) || Multi-modal insect flight control || 20 Jun start &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* iGEM: Brown, Julia; Cheng, Puikei; Shelton, Amanda; Thadani, Nicole&lt;br /&gt;
* Solar Decathlon: Jones, Sam; Lu, David; Suen, Ka&lt;br /&gt;
&lt;br /&gt;
=== Meetings on 20-21 June ===&lt;br /&gt;
I&#039;d like to have a 30 minute meeting with all summer undergraduates on either 20 or 21 June to kick off the summer (I am out of town the week of 13 June, when many of you start).  This meeting should be with me and (one of) you co-mentor(s).  Please check with the appropriate co-mentor before signing up, to make sure they can also make that time.&lt;br /&gt;
&lt;br /&gt;
{| width=100% border=1&lt;br /&gt;
|- valign=top&lt;br /&gt;
| width=60% |&lt;br /&gt;
==== 20 June 2011 (Mon) ====&lt;br /&gt;
{| cellpadding=0 cellspacing=0 width=100%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| wdith=50% |&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|11:30a|Stephanie and Necmiye}}&lt;br /&gt;
{{agenda item|12:00p|Magnus and Andrea}}&lt;br /&gt;
{{agenda end}}&lt;br /&gt;
| width=50% |&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|4:30p|Ishan and Jongmin}}&lt;br /&gt;
{{agenda item|5:00p|Keshav and Emzo}}&lt;br /&gt;
{{agenda item|5:30p|Paul and Joe}}&lt;br /&gt;
{{agenda item|6:00p|Yuchen and Necmiye}}&lt;br /&gt;
{{agenda item|6:30p|Petter, Necmiye and Ufuk}}&lt;br /&gt;
{{agenda end}}&lt;br /&gt;
|}&lt;br /&gt;
| width=30% |&lt;br /&gt;
&lt;br /&gt;
==== 21 June 2011 (Tue) ====&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|11:00a|Open}}&lt;br /&gt;
{{agenda item|11:30a|Open}}&lt;br /&gt;
{{agenda end}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Original project descriptions ===&lt;br /&gt;
&lt;br /&gt;
This section contains a list of project areas where I will be supervising projects this year.  (OBSOLETE:) Students interested in writing proposals for SURF projects should contact me via e-mail to discuss what areas they are interested in and talk through possible SURF proposal topics.  All applications should go through the normal SURF application process, described at www.surf.caltech.edu.&lt;br /&gt;
&lt;br /&gt;
{| border=1 width=100%&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Title&#039;&#039;&#039; || &#039;&#039;&#039;Grant/Project&#039;&#039;&#039; || &#039;&#039;&#039;Co-Mentors&#039;&#039;&#039; || &#039;&#039;&#039;Comments&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| [[SURF 2011: Synthetic biology in a cell-free expression system|Synthetic biology in a cell-free expression system]]&lt;br /&gt;
| [[Molecular Programming Project|MPP]]&lt;br /&gt;
| Jongmin Kim&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[SURF 2011: Design of Biomolecular Circuits Using Programmable Protein Scaffolds|Design of Biomolecular Circuits Using Programmable Protein Scaffolds]]&lt;br /&gt;
| [[Biomolecular Feedback Circuits for Modular, Robust and Rapid Response|ICB]]&lt;br /&gt;
| Emzo de los Santos&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[SURF 2011: Effects of Topology on DNA Transcription|Effects of Topology on DNA Transcription]]&lt;br /&gt;
| [[Biomolecular Feedback Circuits for Modular, Robust and Rapid Response|ICB]]&lt;br /&gt;
| Joseph T. Meyerowitz&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[SURF 2011: Receding Horizon Temporal Logic Planning Toolbox|Receding Horizon Temporal Logic Planning Toolbox]]&lt;br /&gt;
| [[Distributed_Sense_and_Control_Systems|MuSyC]]&lt;br /&gt;
| Ufuk Topcu&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[SURF 2011: Implementation of Control Protocols for Camera Networks|Implementation of Control Protocols for Camera Networks]]&lt;br /&gt;
| [[Distributed_Sense_and_Control_Systems|MuSyC]]&lt;br /&gt;
| Necmiye Ozay&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Summer_2011&amp;diff=12651</id>
		<title>Group Schedule, Summer 2011</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Summer_2011&amp;diff=12651"/>
		<updated>2011-06-12T01:08:28Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{| border=1 width=100%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| &#039;&#039;&#039;Week&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Mini-group meetings&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Group meeting&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Other&#039;&#039;&#039;&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
===== 13-17 Jun =====&lt;br /&gt;
|&lt;br /&gt;
None&lt;br /&gt;
| &lt;br /&gt;
None&lt;br /&gt;
| &lt;br /&gt;
RMM out all week&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
===== 20-24 Jun =====&lt;br /&gt;
|&lt;br /&gt;
* iGEM: Mon @ 9:30&lt;br /&gt;
* SURF meetings, cycle 0: (sign on at [[SURF 2011]] page)&lt;br /&gt;
* NCS: Tue, 1-3 pm&lt;br /&gt;
** Speaker 1: Necmiye&lt;br /&gt;
** Speaker 2: open&lt;br /&gt;
|&lt;br /&gt;
Tue @ 12: speaker TBD (external)&lt;br /&gt;
|&lt;br /&gt;
RMM out 22-24 Jun&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 27 Jun - 1 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* Robotics: Mon, 1-3 pm&lt;br /&gt;
** Speaker 1: open&lt;br /&gt;
** Speaker 2: open&lt;br /&gt;
* Biocircuits: Tue, 9a-2p&lt;br /&gt;
** Overview presentations (all; 10 min each)&lt;br /&gt;
** Lunch will be provided&lt;br /&gt;
* SURF meetings, cycle 1: Tue pm&lt;br /&gt;
** 4:00 pm: open&lt;br /&gt;
** 4:30 pm: open&lt;br /&gt;
** 5:00 pm: open&lt;br /&gt;
** 5:30 pm: open&lt;br /&gt;
** 6:00 pm: open&lt;br /&gt;
| &lt;br /&gt;
Mon @ 12: speaker TBD (Nils Napp?)&lt;br /&gt;
|&lt;br /&gt;
* Nils Napp visiting&lt;br /&gt;
* RMM out 29 Jun-1 Jul (ACC)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 4-8 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* Biocircuits: Tue, 10-12&lt;br /&gt;
** Speaker 1: open&lt;br /&gt;
** Speaker 2: open&lt;br /&gt;
** Speaker 3: open&lt;br /&gt;
* NCS: Thu, 1-3 pm&lt;br /&gt;
** Speaker 3: open&lt;br /&gt;
** Speaker 4: open&lt;br /&gt;
* SURF meetings, cycle 1: Thu pm&lt;br /&gt;
** 3:00 pm: open&lt;br /&gt;
** 3:30 pm: open&lt;br /&gt;
** 4:00 pm: open&lt;br /&gt;
** 4:30 pm: open&lt;br /&gt;
** 5:00 pm: open&lt;br /&gt;
&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12: Henrik Sandberg?&lt;br /&gt;
|&lt;br /&gt;
* Institute holiday on Mon&lt;br /&gt;
* Eric Colinet visiting on 5 Jul&lt;br /&gt;
* Henrik Sandberg visiting 3-9 Jul&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 11-15 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* iGEM: Mon @ 5 pm?&lt;br /&gt;
* Biocircuits: Tue, 10a-12p&lt;br /&gt;
** Speaker 4: open&lt;br /&gt;
** Speaker 5: open&lt;br /&gt;
** iGEM presentation (30 min)&lt;br /&gt;
* Robotics: Tue, 1p-3p&lt;br /&gt;
** Speaker 3: open&lt;br /&gt;
** Speaker 4: Sandeep&lt;br /&gt;
* SURF meetings, cycle 2: Thu, pm&lt;br /&gt;
** 3:00 pm: open&lt;br /&gt;
** 3:30 pm: open&lt;br /&gt;
** 4:00 pm: open&lt;br /&gt;
** 4:30 pm: open&lt;br /&gt;
** 5:00 pm: open&lt;br /&gt;
| &lt;br /&gt;
Mon @ 12: Speaker TBD&lt;br /&gt;
|&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 18-22 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* SURF meetings, cycle 2: Thu pm&lt;br /&gt;
** 2:30p: open&lt;br /&gt;
** 3:00p: open&lt;br /&gt;
** 3:30p: open&lt;br /&gt;
** 4:00p: open&lt;br /&gt;
** 4:30p: open&lt;br /&gt;
* iGEM: Thu, 5-6p?&lt;br /&gt;
* Biocircuits: Fri, 10a-12p&lt;br /&gt;
** Speaker 6: Ye Yuan&lt;br /&gt;
** Speaker 7: Dionysios&lt;br /&gt;
** SURF 1: Paul&lt;br /&gt;
* Robotics: Fri, 1p-3p&lt;br /&gt;
** Speaker 5: open&lt;br /&gt;
** SURF 1: Magnus&lt;br /&gt;
** SURF 2: Stephanie&lt;br /&gt;
* NCS: Fri, 3p-5p&lt;br /&gt;
** Speaker 5: Mumu&lt;br /&gt;
** Speaker 6: Ufuk&lt;br /&gt;
** SURF 1: Petter&lt;br /&gt;
| &lt;br /&gt;
Fri @ 12: Josh Michener&lt;br /&gt;
|&lt;br /&gt;
* RMM out 18-21 Jul am&lt;br /&gt;
* Josh Michener visiting 22 Jul&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 25-29 Jul =====&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
* RMM out 25-29 Jul&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 1-5 Aug =====&lt;br /&gt;
|&lt;br /&gt;
* iGEM: 5-6p?&lt;br /&gt;
* Biocircuits: Fri, 10a-12p&lt;br /&gt;
** Speaker 8: open&lt;br /&gt;
** SURF 2: Ishan&lt;br /&gt;
** SURF 3: Arjun&lt;br /&gt;
* NCS: Fri, 1p-3p&lt;br /&gt;
** Speaker 7: open&lt;br /&gt;
** Speaker 8: open&lt;br /&gt;
** SURF 2: Yuchen&lt;br /&gt;
* SURF meetings, cycle 3: Fri, pm&lt;br /&gt;
** 3:00p: open&lt;br /&gt;
** 3:30p: open&lt;br /&gt;
** 4:00p: open&lt;br /&gt;
** 4:30p: open&lt;br /&gt;
** 5:00p: open&lt;br /&gt;
| &lt;br /&gt;
Fri @ 12: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
* RMM out 1-4 Aug&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 8-12 Aug =====&lt;br /&gt;
|&lt;br /&gt;
* Robotics: Tue, 1p-3p&lt;br /&gt;
** Speaker 6: open&lt;br /&gt;
** SURF 3: Klavdia&lt;br /&gt;
* SURF meetings, cycle 3: Tue, pm&lt;br /&gt;
** 3:00p: open&lt;br /&gt;
** 4:30p: open&lt;br /&gt;
** 4:00p: open&lt;br /&gt;
** 5:30p: open&lt;br /&gt;
** 6:00p: open&lt;br /&gt;
* Biocircuits: Thu, 10a-12p&lt;br /&gt;
** Speaker 9: open&lt;br /&gt;
** Speaker 10: open&lt;br /&gt;
** SURF 4: Keshav&lt;br /&gt;
* iGEM: 5p-6p&lt;br /&gt;
| &lt;br /&gt;
Thu @ 12: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 15-19 Aug =====&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
RMM out 15-19 Aug&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 22-26 Aug =====&lt;br /&gt;
|&lt;br /&gt;
* Biocircuits: Mon, 10a-12p&lt;br /&gt;
** Speaker 11: open&lt;br /&gt;
** Speaker 12: open&lt;br /&gt;
** Speaker 13: open&lt;br /&gt;
* Robotics: Mon, 1p-3p&lt;br /&gt;
** Speaker 7: open&lt;br /&gt;
** Speaker 8: open&lt;br /&gt;
* NCS: Mon, 3p-5p&lt;br /&gt;
** Speaker 9: open&lt;br /&gt;
** Speaker 10: Necmiye&lt;br /&gt;
* iGEM: 5p-6p&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
RMM out: 25 Aug (pm) - 1 Sep (pm)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 29 Aug - 2 Sep =====&lt;br /&gt;
|&lt;br /&gt;
* Robotics: Thu, 1-3p&lt;br /&gt;
** Speaker 9: open&lt;br /&gt;
** Speaker 10: open&lt;br /&gt;
* NCS: Thu, 3-5p&lt;br /&gt;
** Speaker 11: open&lt;br /&gt;
** Speaker 12: open&lt;br /&gt;
* iGEM: Thu, 5p-6p&lt;br /&gt;
* Biocircuits; Fri, 10a-12p&lt;br /&gt;
** Speaker 14: open&lt;br /&gt;
** Speaker 15: open&lt;br /&gt;
** Speaker 16: open&lt;br /&gt;
&lt;br /&gt;
| &lt;br /&gt;
Fri @ 12p (tentative): speaker TBD &lt;br /&gt;
|&lt;br /&gt;
* RMM out: 25 Aug (pm) - 1 Sep (pm)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 5-9 Sep =====&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
* RMM out, 5-9 Sep&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
===== 12-16 Sep =====&lt;br /&gt;
|&lt;br /&gt;
* Biocircuits: Tue, 10a-12p&lt;br /&gt;
** Speaker 17: open&lt;br /&gt;
** Speaker 18: open&lt;br /&gt;
** Speaker 19: open&lt;br /&gt;
* NCS: Wed, 1p-3p&lt;br /&gt;
** Speaker 13: Mumu&lt;br /&gt;
** Speaker 14: Ufuk&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12p: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 19-23 Sep =====&lt;br /&gt;
|&lt;br /&gt;
* Robotics: Mon, 1p-3p&lt;br /&gt;
** Speaker 11: open&lt;br /&gt;
** Speaker 12: open&lt;br /&gt;
* Biocircuits: Tue, 10a-12p&lt;br /&gt;
** Speaker 20: open&lt;br /&gt;
** Speaker 21: open&lt;br /&gt;
** Speaker 22: open&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12p: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
RMM out, 20 Sep (pm) to 23 Sep&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Summer_2011&amp;diff=12650</id>
		<title>Group Schedule, Summer 2011</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Group_Schedule,_Summer_2011&amp;diff=12650"/>
		<updated>2011-06-12T01:07:30Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{| border=1 width=100%&lt;br /&gt;
|- valign=top&lt;br /&gt;
| &#039;&#039;&#039;Week&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Mini-group meetings&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Group meeting&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;Other&#039;&#039;&#039;&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
===== 13-17 Jun =====&lt;br /&gt;
|&lt;br /&gt;
None&lt;br /&gt;
| &lt;br /&gt;
None&lt;br /&gt;
| &lt;br /&gt;
RMM out all week&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
===== 20-24 Jun =====&lt;br /&gt;
|&lt;br /&gt;
* iGEM: Mon @ 9:30&lt;br /&gt;
* SURF meetings, cycle 0: (sign on at [[SURF 2011]] page)&lt;br /&gt;
* NCS: Tue, 1-3 pm&lt;br /&gt;
** Speaker 1: Necmiye&lt;br /&gt;
** Speaker 2: open&lt;br /&gt;
|&lt;br /&gt;
Tue @ 12: speaker TBD (external)&lt;br /&gt;
|&lt;br /&gt;
RMM out 22-24 Jun&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 27 Jun - 1 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* Robotics: Mon, 1-3 pm&lt;br /&gt;
** Speaker 1: open&lt;br /&gt;
** Speaker 2: open&lt;br /&gt;
* Biocircuits: Tue, 9a-2p&lt;br /&gt;
** Overview presentations (all; 10 min each)&lt;br /&gt;
** Lunch will be provided&lt;br /&gt;
* SURF meetings, cycle 1: Tue pm&lt;br /&gt;
** 4:00 pm: open&lt;br /&gt;
** 4:30 pm: open&lt;br /&gt;
** 5:00 pm: open&lt;br /&gt;
** 5:30 pm: open&lt;br /&gt;
** 6:00 pm: open&lt;br /&gt;
| &lt;br /&gt;
Mon @ 12: speaker TBD (Nils Napp?)&lt;br /&gt;
|&lt;br /&gt;
* Nils Napp visiting&lt;br /&gt;
* RMM out 29 Jun-1 Jul (ACC)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 4-8 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* Biocircuits: Tue, 10-12&lt;br /&gt;
** Speaker 1: open&lt;br /&gt;
** Speaker 2: open&lt;br /&gt;
** Speaker 3: open&lt;br /&gt;
* NCS: Thu, 1-3 pm&lt;br /&gt;
** Speaker 3: open&lt;br /&gt;
** Speaker 4: open&lt;br /&gt;
* SURF meetings, cycle 1: Thu pm&lt;br /&gt;
** 3:00 pm: open&lt;br /&gt;
** 3:30 pm: open&lt;br /&gt;
** 4:00 pm: open&lt;br /&gt;
** 4:30 pm: open&lt;br /&gt;
** 5:00 pm: open&lt;br /&gt;
&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12: Henrik Sandberg?&lt;br /&gt;
|&lt;br /&gt;
* Institute holiday on Mon&lt;br /&gt;
* Eric Colinet visiting on 5 Jul&lt;br /&gt;
* Henrik Sandberg visiting 3-9 Jul&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 11-15 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* iGEM: Mon @ 5 pm?&lt;br /&gt;
* Biocircuits: Tue, 10a-12p&lt;br /&gt;
** Speaker 4: open&lt;br /&gt;
** Speaker 5: open&lt;br /&gt;
** iGEM presentation (30 min)&lt;br /&gt;
* Robotics: Tue, 1p-3p&lt;br /&gt;
** Speaker 3: open&lt;br /&gt;
** Speaker 4: Sandeep&lt;br /&gt;
* SURF meetings, cycle 2: Thu, pm&lt;br /&gt;
** 3:00 pm: open&lt;br /&gt;
** 3:30 pm: open&lt;br /&gt;
** 4:00 pm: open&lt;br /&gt;
** 4:30 pm: open&lt;br /&gt;
** 5:00 pm: open&lt;br /&gt;
| &lt;br /&gt;
Mon @ 12: Speaker TBD&lt;br /&gt;
|&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 18-22 Jul =====&lt;br /&gt;
|&lt;br /&gt;
* SURF meetings, cycle 2: Thu pm&lt;br /&gt;
** 2:30p: open&lt;br /&gt;
** 3:00p: open&lt;br /&gt;
** 3:30p: open&lt;br /&gt;
** 4:00p: open&lt;br /&gt;
** 4:30p: open&lt;br /&gt;
* iGEM: Thu, 5-6p?&lt;br /&gt;
* Biocircuits: Fri, 10a-12p&lt;br /&gt;
** Speaker 6: Ye Yuan&lt;br /&gt;
** Speaker 7: Dionysios&lt;br /&gt;
** SURF 1: Paul&lt;br /&gt;
* Robotics: Fri, 1p-3p&lt;br /&gt;
** Speaker 5: open&lt;br /&gt;
** SURF 1: Magnus&lt;br /&gt;
** SURF 2: Stephanie&lt;br /&gt;
* NCS: Fri, 3p-5p&lt;br /&gt;
** Speaker 5: Mumu&lt;br /&gt;
** Speaker 6: Ufuk&lt;br /&gt;
** SURF 1: Petter&lt;br /&gt;
| &lt;br /&gt;
Fri @ 12: Josh Michener&lt;br /&gt;
|&lt;br /&gt;
* RMM out 18-21 Jul am&lt;br /&gt;
* Josh Michener visiting 22 Jul&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 25-29 Jul =====&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
* RMM out 25-29 Jul&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 1-5 Aug =====&lt;br /&gt;
|&lt;br /&gt;
* iGEM: 5-6p?&lt;br /&gt;
* Biocircuits: Fri, 10a-12p&lt;br /&gt;
** Speaker 8: open&lt;br /&gt;
** SURF 2: Ishan&lt;br /&gt;
** SURF 3: Arjun&lt;br /&gt;
* NCS: Fri, 1p-3p&lt;br /&gt;
** Speaker 7: open&lt;br /&gt;
** Speaker 8: open&lt;br /&gt;
** SURF 2: Yuchen&lt;br /&gt;
* SURF meetings, cycle 3: Fri, pm&lt;br /&gt;
** 3:00p: open&lt;br /&gt;
** 3:30p: open&lt;br /&gt;
** 4:00p: open&lt;br /&gt;
** 4:30p: open&lt;br /&gt;
** 5:00p: open&lt;br /&gt;
| &lt;br /&gt;
Fri @ 12: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
* RMM out 1-4 Aug&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 8-12 Aug =====&lt;br /&gt;
|&lt;br /&gt;
* Robotics: Tue, 1p-3p&lt;br /&gt;
** Speaker 6: open&lt;br /&gt;
** SURF 3: Klavdia&lt;br /&gt;
* SURF meetings, cycle 3: Tue, pm&lt;br /&gt;
** 3:00p: open&lt;br /&gt;
** 4:30p: open&lt;br /&gt;
** 4:00p: open&lt;br /&gt;
** 5:30p: open&lt;br /&gt;
** 6:00p: open&lt;br /&gt;
* Biocircuits: Thu, 10a-12p&lt;br /&gt;
** Speaker 9: open&lt;br /&gt;
** Speaker 10: open&lt;br /&gt;
** SURF 4: Keshav&lt;br /&gt;
* iGEM: 5p-6p&lt;br /&gt;
| &lt;br /&gt;
Thu @ 12: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 15-19 Aug =====&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
RMM out 15-19 Aug&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 22-26 Aug =====&lt;br /&gt;
|&lt;br /&gt;
* Biocircuits: Mon, 10a-12p&lt;br /&gt;
** Speaker 11: open&lt;br /&gt;
** Speaker 12: open&lt;br /&gt;
** Speaker 13: open&lt;br /&gt;
* Robotics: Mon, 1p-3p&lt;br /&gt;
** Speaker 7: open&lt;br /&gt;
** Speaker 8: open&lt;br /&gt;
* NCS: Mon, 3p-5p&lt;br /&gt;
** Speaker 9: open&lt;br /&gt;
** Speaker 10: open&lt;br /&gt;
* iGEM: 5p-6p&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
RMM out: 25 Aug (pm) - 1 Sep (pm)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 29 Aug - 2 Sep =====&lt;br /&gt;
|&lt;br /&gt;
* Robotics: Thu, 1-3p&lt;br /&gt;
** Speaker 9: open&lt;br /&gt;
** Speaker 10: open&lt;br /&gt;
* NCS: Thu, 3-5p&lt;br /&gt;
** Speaker 11: open&lt;br /&gt;
** Speaker 12: Necmiye&lt;br /&gt;
* iGEM: Thu, 5p-6p&lt;br /&gt;
* Biocircuits; Fri, 10a-12p&lt;br /&gt;
** Speaker 14: open&lt;br /&gt;
** Speaker 15: open&lt;br /&gt;
** Speaker 16: open&lt;br /&gt;
&lt;br /&gt;
| &lt;br /&gt;
Fri @ 12p (tentative): speaker TBD &lt;br /&gt;
|&lt;br /&gt;
* RMM out: 25 Aug (pm) - 1 Sep (pm)&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 5-9 Sep =====&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
* RMM out, 5-9 Sep&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
===== 12-16 Sep =====&lt;br /&gt;
|&lt;br /&gt;
* Biocircuits: Tue, 10a-12p&lt;br /&gt;
** Speaker 17: open&lt;br /&gt;
** Speaker 18: open&lt;br /&gt;
** Speaker 19: open&lt;br /&gt;
* NCS: Wed, 1p-3p&lt;br /&gt;
** Speaker 13: Mumu&lt;br /&gt;
** Speaker 14: Ufuk&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12p: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
|- valign=top&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
===== 19-23 Sep =====&lt;br /&gt;
|&lt;br /&gt;
* Robotics: Mon, 1p-3p&lt;br /&gt;
** Speaker 11: open&lt;br /&gt;
** Speaker 12: open&lt;br /&gt;
* Biocircuits: Tue, 10a-12p&lt;br /&gt;
** Speaker 20: open&lt;br /&gt;
** Speaker 21: open&lt;br /&gt;
** Speaker 22: open&lt;br /&gt;
| &lt;br /&gt;
Tue @ 12p: speaker TBD&lt;br /&gt;
|&lt;br /&gt;
RMM out, 20 Sep (pm) to 23 Sep&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=Cedric_Langbort,_April_2011&amp;diff=12330</id>
		<title>Cedric Langbort, April 2011</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=Cedric_Langbort,_April_2011&amp;diff=12330"/>
		<updated>2011-04-04T17:50:51Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Schedule ===&lt;br /&gt;
7 April (Thursday)&lt;br /&gt;
{{agenda begin}}&lt;br /&gt;
{{agenda item|9:30a|Open}}&lt;br /&gt;
{{agenda item|10:15a|Open}}&lt;br /&gt;
{{agenda item|11:00a|Seminar, Annenberg (TBD)}}&lt;br /&gt;
{{agenda item|12:00p|Lunch: TBD}}&lt;br /&gt;
{{agenda item|1:15p|Open}}&lt;br /&gt;
{{agenda item|2:00p|Necmiye}}&lt;br /&gt;
{{agenda item|3:15p|Open}}&lt;br /&gt;
{{agenda item|4:00p|Ufuk}}&lt;br /&gt;
{{agenda end}}&lt;br /&gt;
&lt;br /&gt;
=== Seminar Information ===&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
Control with limited information&amp;lt;br&amp;gt;&lt;br /&gt;
Cedric Langbort, UIUC&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The design and implementation of controllers for distributed networked systems bring forth a number of new issues related to (i) the absence of a globally known, trusted, model of the plant, (ii) self-interests of individual components/decision makers, which may find it in their own best interest to misreport observations or mis-implement a globally efficient control action, and (iii) the interplay between communication protocols and control systems. &lt;br /&gt;
&lt;br /&gt;
All these effects, which are unique to distributed control scenarios, can loosely be thought of as limiting the information available to different parts of the system (including the control designer), but introduce this information loss in various and complementary ways.&lt;br /&gt;
&lt;br /&gt;
In this talk, we consider simple models that address different aspects of control and control design under restricted information.&lt;br /&gt;
&lt;br /&gt;
* First, we study the ``price of silence&amp;quot; in control design, a new metrics inspired by the notion of &amp;quot;price of anarchy&amp;quot; in network games. While the price of anarchy characterizes the loss of performance due to selfish (i.e. Nash equilibrium playing) decision making, the price of silence is aimed at measuring the best achievable closed-loop performance (compared to the optimum) when the various subsystems composing a plant do not share their model&#039;s information with each other, i.e. `remain&#039; silent about their subsystems.&lt;br /&gt;
&lt;br /&gt;
* Then, we consider networked control problems in which  the observation channel between the plant and the controller is adversarial (in contrast with traditional models where it is assumed to be stochastically, but non-maliciously, dropping, modifying, or delaying packets). Such strategic channels  . We study two different types of attacks, -- one occurring solely at the level of the communication protocol, the other at the physical level -- and compute saddle-node solutions for the resulting zero-sum game between controller and jammer.&lt;br /&gt;
&lt;br /&gt;
Different parts of this talk are the result of joint work with J.Ch. Delvenne (UC Louvain), T. Tanaka, A. Gupta and T. Basar (UIUC), and F. Farokhi and K.H. Johansson (KTH Stockholm).&lt;br /&gt;
&lt;br /&gt;
=== Speaker Bio ===&lt;br /&gt;
Cedric Langbort has been an Assistant Professor of Aerospace&lt;br /&gt;
Engineering at the University of Illinois at Urbana-Champaign, and a Research Assistant &lt;br /&gt;
Professor with the Coordinated Science Laboratory, since 2006.&lt;br /&gt;
&lt;br /&gt;
He received the Aerospace Engineering Degree, with highest honors, from the Ecole Nationale Sup\&#039;erieure &lt;br /&gt;
de l&#039;Aeronautique et de l&#039;Espace - Supaero (now ISAE), &lt;br /&gt;
Toulouse, France, in 1999, the Diplome &lt;br /&gt;
d&#039;Etudes Approfondies in dynamical systems &lt;br /&gt;
from the Institut Non-Lineaire de Nice, Nice, &lt;br /&gt;
France, in 2000, and the Ph. D. in Theoretical &lt;br /&gt;
Mechanics from Cornell University in 2005. &lt;br /&gt;
From 2004 to 2006, he was a Postdoctoral &lt;br /&gt;
Scholar in the Center for the Mathematics &lt;br /&gt;
of Information at the California Institute of Technology. &lt;br /&gt;
&lt;br /&gt;
His research interests include distributed, robust, and networked control. He is a member of the IFAC Technical Committee on ``Networked Systems&amp;quot; and an editor for the journal ``Optimal Control Applications and Methods&amp;quot; (OCAM).&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
	<entry>
		<id>https://murray.cds.caltech.edu/index.php?title=SURF_2011:_Implementation_of_Control_Protocols_for_Camera_Networks&amp;diff=11805</id>
		<title>SURF 2011: Implementation of Control Protocols for Camera Networks</title>
		<link rel="alternate" type="text/html" href="https://murray.cds.caltech.edu/index.php?title=SURF_2011:_Implementation_of_Control_Protocols_for_Camera_Networks&amp;diff=11805"/>
		<updated>2011-01-10T14:59:49Z</updated>

		<summary type="html">&lt;p&gt;Necmiye: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;2011 SURF Project Description&#039;&#039;&#039;&lt;br /&gt;
* Mentor: Richard Murray&lt;br /&gt;
* Co-Mentor: Necmiye Ozay&lt;br /&gt;
&lt;br /&gt;
In a recent preprint [3], we proposed a method for distributed control protocol synthesis for smart camera networks where the goal is to guarantee that certain linear temporal logic (LTL) specifications related to a given surveillance task are met. We consider a hierarchical visual surveillance system that supplements a stationary camera network used for tracking with additional active cameras (either pan-tilt-zoom cameras or mobile robots with vision sensors). This is a hands-on project where the goal is to build a setup to implement such embedded controllers on a real camera network. Possible steps of the project are:&lt;br /&gt;
&lt;br /&gt;
* To come up with a couple of simple surveillance/service scenarios that could potentially be implemented in a lab equipped with a tracking system.&lt;br /&gt;
* To abstract finite state automata that describe the dynamic motion model of the cameras/robots (e.g. using the discretization method proposed in [2]).&lt;br /&gt;
* To synthesize a control protocol that assigns targets to cameras or jobs to robots and that generates a high level motion plan using the method described in [3] with TuLiP ([1]). A tracking system is being installed in the robotics lab at CDS that can be used to obtain target tracks. The track information should be communicated to the controllers that implement the control protocol.&lt;br /&gt;
* To implement the controllers and test their performance.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Required Skills:&#039;&#039;&#039;	To make decent progress over the summer, the student should have experience with Python, or otherwise has software engineering knowledge that suggests learning other languages, environments, etc. will not be difficult. For using the tracking system familiarity or willingness to learn ROS (http://www.ros.org/wiki/ ) is crucial. At least elementary experience of working in Unix-like environments would be very helpful.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;References&#039;&#039;&#039;&lt;br /&gt;
# T. Wongpiromsarn, U. Topcu, N. Ozay, H. Xu, and R. M. Murray, TuLiP: a software toolbox for receding horizon temporal logic planning, International Conference on Hybrid Systems: Computation and Control, 2011 (to appear). code available at http://www.cds.caltech.edu/tulip/&lt;br /&gt;
# T. Wongpiromsarn, U. Topcu, and R. M. Murray, Receding Horizon Temporal Logic Planning, IEEE Transactions on Automatic Control, 2010 (submitted).&lt;br /&gt;
# N. Ozay, U. Topcu, T. Wongpiromsarn, and R. M. Murray, Distributed Synthesis of Control Protocols for Smart Camera Networks, (submitted). available from http://www.cds.caltech.edu/~utopcu/images//b/b6/OTWM-iccps11.pdf&lt;/div&gt;</summary>
		<author><name>Necmiye</name></author>
	</entry>
</feed>