Changes for page Available Topics
Last modified by Niklas Rentz on 2025/05/09 08:15
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki.s sm1 +XWiki.cds - Content
-
... ... @@ -26,6 +26,31 @@ 26 26 27 27 //» Dienste.// Algorithmen und Meta Layout müssen den Anwendern zugänglich gemacht werden, damit ein Nutzen daraus entsteht. Dazu müssen wir verschiedenste graphische Frameworks mit vorhandenen Layout-Bibliotheken integrieren und eine Reihe von Werkzeugen entwickeln, mit denen die Verfügbarkeit unserer Lösungen gesteigert wird. Hierzu gehört z.B. die Unterstützung von Standard-Graphenformaten sowie ein Web-Service für automatisches Layout. 28 28 29 +* **Evaluate Impact of Reversing Edges on Humans** (Master) 30 +Reversing edges during the layer assignment problem as suggested by the previous topic may have a negative impact on the readability of diagram. User-studies should be carefully planned and conducted to answer two questions: which edges are naturally reversed by humans and does reversing too many edges worsen comprehensibility? 31 +* **Node Placement With a Focus on Compactness** (Master) 32 +Node placement algorithms often try to draw as many edges as straight lines as possible. However, that usually results in less compact diagrams. The focus of this topic would be to devise or adapt a node placement algorithm that tries to strike a balance between straightness and compactness. 33 + 34 +\\ 35 + 36 +* **Interactive Constraint Creation and Application in Automatic Layout **(Bachelor, Master) 37 +Evaluate options how to create constraints on the layout like "Node x should be placed at position y" and how to implement this in the current layout algorithms. Assess how such constraints can be persisted within the model. 38 +* **Force Based Drawing with Port Constraints** (Master) 39 +Develop methods for integrating port constraints in force-based drawing approaches. The resulting node placement shall be evaluated using an edge router such as [[libavoid>>url:http://www.adaptagrams.org/||shape="rect"]] on the model library of [[Ptolemy>>url:http://ptolemy.eecs.berkeley.edu/||shape="rect"]]. 40 + 41 +\\ 42 + 43 +* **Improved Spline Edge Routing **(Master) 44 +Our layer-based layout algorithm is capable to route edges as splines. Evaluate the results using state machine diagrams, identify possible improvements and develop solutions to address these. 45 +* **Orthogonal "Edge Bundling"** (Bachelor, Master) 46 +Implement and evaluate strategies for orthogonal edge bundling within our layer-based layout algorithm. 47 +\\ 48 +* **Force-directed Methods for State Machine Layout** (Master) 49 +We currently use layer-based methods to layout SCCharts, a state machine dialect. The goal of this topic is to evaluate and implement force-directed methods to lay out SCCharts. Hard requirements are a proper placement of edge labels, proper routing of edges, and being able to specify the relative positioning of certain nodes to each other. 50 +* **Routing of Self-Loops** (Master) 51 +Self-loops are an integral part of many diagram types, for instance, of state diagrams and dataflow diagrams. Properly routing self-loops is not as easy as one may think. The task of this topic is to evaluate and implement different strategies to route self-loops for three edge routing styles: polyline, orthogonal, and splines. Labels of self loops are to be considered as well. 52 +\\ 53 + 29 29 = Modeling Pragmatics = 30 30 31 31 **Advisors:** Reinhard von Hanxleden, Ulf Rüegg, Christoph Daniel Schulze ... ... @@ -36,6 +36,8 @@ 36 36 Implement a prototype to investigate whether OpenStreetMap can be used to display custom data (such as, say, rendered diagrams) to use its filtering and exploration features for exploring large diagrams. 37 37 * **3 Control Flow Graph Exploration / Visualization** (Bachelor) 38 38 Use pragmatics concepts (automatic layout, focus & context) for exploring/visualizing control flow graphs and specific paths, eg. as computed by OTAWA WCET analysis tool, eg. using KLighD. 64 +* **Generate signal flow graphs from finished module descriptions (Bachelor)** 65 +Use pragmatics concepts to parse YAML data and generate browsable signal flow diagrams for an audio application using KLighD. Might also include building an Xtext-based editor to write the YAML files in the first place and help highlight problems. (In conjunction with [[sonoware GmbH>>url:https://www.sonoware.de/en/||shape="rect"]]) 39 39 * **Use signal flow graphs for parameterizing / debugging audio system configurations (Master)** 40 40 The configuration of how signals are routed and how signal processors are configured in an audio system is a complex task. Make configuration and debugging easier by providing a visualization of the current configuration. Also, research what will help developers and users find configuration problems. The resulting software can be integrated into an existing Python-based configuration application, or be developed as a standalone tool that communicates with the audio system through Ethernet. (In conjunction with [[sonoware GmbH>>url:https://www.sonoware.de/en/||shape="rect"]]) 41 41 ... ... @@ -58,8 +58,14 @@ 58 58 59 59 //SCCharts Modelling & Transformations// 60 60 88 +* (% style="line-height: 1.4285715;" %)**On the pragmatics of modeling large models in SCCharts**(%%) (Bachelor/Master) 89 +Evaluate the possibilities to create and maintain large models in model-based languages (i.e. SCCharts) and provide suggestions for improvements 90 +* **Transformation of Circuits to SCCharts** (Bachelor/Master) 91 +Implement a transformation that translates circuits to (dataflow) SCCharts. 61 61 * **SCCharts Verification** (Master/Bachelor) 62 62 Add the possibility to perfom model checking on SCCharts 94 +* **Transformation Verification** (Master/Bachelor) 95 +Develop a method for SCCharts to check transformations for semantic equivalence. 63 63 * **Derive M2M Transformations from Pseudocode** (Master/Bachelor) 64 64 Create a Pseudocode DSL (and generator) to automatically derive M2M transformations. 65 65 * **Raceyard evaluation** (Master) ... ... @@ -71,14 +71,19 @@ 71 71 Profile the actual SCCharts compiler/transformations and apply optimizations; also evaluate the possibility to use multiple cores for compilation. 72 72 * **SCG Optimization based on SSA **(Bachelor/Master) 73 73 The Static Single Assignment form enables powerful optimizations such as [[sparse conditional constant propagation>>url:http://dl.acm.org/citation.cfm?id=103136||shape="rect"]]. Adjust and implement this algorithm in the context of SCGs and evaluate the result. 107 +* **Extend the SC MoC to handle priority-based variable accesses** (Bachelor/Master) 108 +Add priorities to variable accesses to extend the SC MoC and therefore the number of valid sequentially constructive synchronous programs. 74 74 * **Efficient data dependency & scheduling analyses in SCCharts** (Master/Bachelor) 75 75 Implement analyses for data dependency, scheduling (e.g. tick boundaries) for SCCharts to improve static scheduling of the compiler. 76 -\\ 111 +* **Curing Schizophrenia in SCCharts **(Master/Bachelor) 112 +Develop new synchronizer to handle schizophrenia properly (e.g. depth join). 77 77 78 78 //SCCharts Simulation// 79 79 80 80 * **Visualization of Model-based Simulation via Tracing** (Bachelor/Master) 81 81 Use the already implemented Model-to-Model-Tracing in KIELER to visualize simulations. 118 +* **Environment Simulations for SCCharts** (Master/Bachelor) 119 +Develop a system to simulate environments (e.g. for Lego Mindstorms) for SCCharts in KIELER 82 82 * **Core SCCharts Interpreter** (Master/Bachelor) 83 83 Implement an Interpreter for Core SCCharts. 84 84 ... ... @@ -93,6 +93,31 @@ 93 93 94 94 //Synchronous Languages// 95 95 96 -* (% style="letter-spacing: 0.0px;" %)**eSCL - Implementing {{code language="none"}}gotopause{{/code}}**(%%) (Bachelor/Master) 134 +* **Incremental Compilation of SCEst** (Bachelor/Master) 135 +Modify the KIELER SCEst language so that KIELER is able to compile Esterel step-by-step to C via SCL. 136 +For Master Students: Also add the possibility to compile from SCCharts to SCEst. 137 +* **eSCL - Implementing {{code language="none"}}gotopause{{/code}}** (Bachelor/Master) 97 97 Create an extended dialect of the SC Language including the {{code language="none"}}gotopause{{/code}} statement and implement a transformation to SCL. 139 +* **Quartz **(Master) 140 +Integrate the synchronous Quartz language into KIELER for validation purposes and teaching. 141 + 98 98 \\ 143 + 144 += (% style="color: rgb(0,0,0);" %)Miscellaneous Topics(%%) = 145 + 146 +**Advisors:** to be determined. 147 + 148 +* **Developing an Info Screen** (Bachelor) 149 +Info screens are screens that present data in ways that can be easily understood. This includes static data (project description graphics, members of a team, ...) as well as dynamically aggregated data (bug statistics, automatic build overviews, ...). This topic is about developing such an info screen for our group and making it easily configurable. 150 +\\ 151 +* **Developing a domain specific language (DSL) for model railway control** (Bachelor/Master) 152 +We maintain a model railway installation as a demonstrator for our work and as a student teaching tool. Especially for demonstations to non-technical visitors we would like to have a simple language to create controllers for the railway. 153 + 154 +\\ 155 + 156 +(% style="display: none;" %) 157 +((( 158 +408 159 +))) 160 + 161 +\\
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 - 408946301 +37814405 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/RTSYS/pages/ 40894630/Topics for Student Theses1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/RTSYS/pages/37814405/Topics for Student Theses