Difference between revisions of "EUDP Roadmap"

From EUDP
Jump to: navigation, search
Line 6: Line 6:
 
digraph G {
 
digraph G {
 
  graph [ fontname = "Helvetica-Oblique",
 
  graph [ fontname = "Helvetica-Oblique",
         fontsize = 12,
+
         fontsize = 11,
         size ="12,12"];
+
         size ="11,11"];
  
 
  {
 
  {
Line 19: Line 19:
 
  subgraph cluster_PreProject {
 
  subgraph cluster_PreProject {
 
   /* Definition of the PreProject cluster */
 
   /* Definition of the PreProject cluster */
   color=palegreen;
+
   graph [ color=palegreen, style=filled, URL="PreProject_Phase" ];
  style=filled;  
+
   node [style=filled,color=white,fixedsize=true, width=3];
   node [style=filled,color=white];
+
 
   PreAnalysis->PreContracting;
 
   PreAnalysis->PreContracting;
 
   rank=same; "PreProject phase";
 
   rank=same; "PreProject phase";
Line 27: Line 26:
  
 
  subgraph cluster_Launch {
 
  subgraph cluster_Launch {
   /* Definition of the Launch cluster */
+
   /* Definition of the Launch cluster */
   color=darkkhaki;
+
   graph [ color=darkkhaki,style=filled, URL="The_Launch_Phase" ];
  style=filled;
+
   node [style=filled,color=white,fixedsize=true, width=3];
   node [style=filled,color=white];
+
 
   rank=same; "Launch phase";
 
   rank=same; "Launch phase";
 
   "General Analysis"->"General Architecture Design"->"Technical Platform"->Contracting;
 
   "General Analysis"->"General Architecture Design"->"Technical Platform"->Contracting;
Line 39: Line 37:
 
  subgraph cluster_Realisation {
 
  subgraph cluster_Realisation {
 
   /* Definition of the Realisation cluster */
 
   /* Definition of the Realisation cluster */
   color=darkseagreen;
+
   graph [ color=darkseagreen, style=filled, URL="Realisation_Phase" ];
  style=filled;
+
   node [style=filled,color=white,fixedsize=true, width=3];
   node [style=filled,color=white];
+
 
   rank=same; "Realisation phase";
 
   rank=same; "Realisation phase";
 
   "Strategy & Planning"->"Analysis"->"Design"->"Implementation"->"Verification"->"Deployment";
 
   "Strategy & Planning"->"Analysis"->"Design"->"Implementation"->"Verification"->"Deployment";
Line 51: Line 48:
 
  subgraph cluster_PostProject {
 
  subgraph cluster_PostProject {
 
   /* Definition of the PostProject cluster */
 
   /* Definition of the PostProject cluster */
   color=paleturquoise;
+
   graph [ color=paleturquoise, style=filled , URL="Post_Project_Phase"];
  style=filled;
+
   node [style=filled,color=white,fixedsize=true, width=3];
   node [style=filled,color=white];
+
   rank=same; "PostProject phase"; "Product Accept"->"Product Evaluation"->"Project Evaluation";
   rank=same; "PostProject phase";
+
  "Product Accept"->"Product Evaluation"->"Project Evaluation";
+
 
  }
 
  }
  
 
  subgraph cluster_CommonActivities {
 
  subgraph cluster_CommonActivities {
 
   /* Definition of the Comomon Activities cluster */
 
   /* Definition of the Comomon Activities cluster */
   color=tan;
+
   graph [rankdir=LR, color=tan, style=filled, compound=true, URL="Common_Activities"]
  style=filled;
+
   node [style=filled,color=white,fixedsize=true, width=3];
  compound=true;
+
   edge [style=invis];
   node [style=filled,color=white];
+
  "Human Processes" -> "Risk Management" -> "Hardware Development" - "Review Techniques" -> "Verification - common";
   "Hardware Development" ; "Human Processes" ; "Review Techniques"; "Verification - common"; "Risk Management";
+
 
  }
 
  }
  

Revision as of 10:48, 22 February 2010

EUDP Roadmap

Text labels are click able. If you want a general introduction to the individual phases please click on the labels naming the individual phase.

<graphviz caption='EUDP overview' alt='phylogenetic tree' format='svg+png'> digraph G {

graph [ fontname = "Helvetica-Oblique",
        fontsize = 11,
        size ="11,11"];
{
  /* Defines the ranking for the four phases */
  node [shape=plaintext];
  edge [style=invis];
  "PreProject phase"->"Launch phase"->"Realisation phase"->"PostProject phase";
}


subgraph cluster_PreProject {
  /* Definition of the PreProject cluster */
  graph [ color=palegreen, style=filled, URL="PreProject_Phase" ];
  node [style=filled,color=white,fixedsize=true, width=3];
  PreAnalysis->PreContracting;
  rank=same; "PreProject phase";
}
subgraph cluster_Launch {
  /* Definition of the Launch cluster */  
  graph [ color=darkkhaki,style=filled, URL="The_Launch_Phase" ];
  node [style=filled,color=white,fixedsize=true, width=3];
  rank=same; "Launch phase";
  "General Analysis"->"General Architecture Design"->"Technical Platform"->Contracting;
}
PreContracting->"General Analysis";
subgraph cluster_Realisation {
  /* Definition of the Realisation cluster */
  graph [ color=darkseagreen, style=filled, URL="Realisation_Phase" ];
  node [style=filled,color=white,fixedsize=true, width=3];
  rank=same; "Realisation phase";
  "Strategy & Planning"->"Analysis"->"Design"->"Implementation"->"Verification"->"Deployment";
}
Contracting->"Strategy & Planning";
Deployment->"Strategy & Planning";
subgraph cluster_PostProject {
  /* Definition of the PostProject cluster */
  graph [ color=paleturquoise, style=filled , URL="Post_Project_Phase"];
  node [style=filled,color=white,fixedsize=true, width=3];
  rank=same; "PostProject phase"; "Product Accept"->"Product Evaluation"->"Project Evaluation";
}
subgraph cluster_CommonActivities {
  /* Definition of the Comomon Activities cluster */
  graph [rankdir=LR, color=tan, style=filled, compound=true, URL="Common_Activities"]
  node [style=filled,color=white,fixedsize=true, width=3];
  edge [style=invis];
  "Human Processes" -> "Risk Management" -> "Hardware Development" - "Review Techniques" -> "Verification - common";
}


Deployment->"Product Accept";
"Hardware Development"->"General Architecture Design";
"Hardware Development"->"Analysis";
"Hardware Development"->Design;
"Human Processes"->PreAnalysis;
"Human Processes"->"General Analysis";
"Review Techniques"->Analysis;
"Review Techniques"->Design;
"Review Techniques"->Implementation;
"Verification - common"->"Strategy & Planning";
"Risk Management"->"Strategy & Planning";
"Risk Management"->"General Architecture Design";
"Project start" [shape=diamond];
"Project start"->"PreAnalysis";
"Project end" [shape=diamond];
"Project Evaluation"->"Project end";
/* Definition of the accompanying URLs */
PreAnalysis [URL="Pre_Analysis"];
PreContracting [URL="Pre_Contracting"];
"General Analysis" [URL="General_Analysis"];
"General Architecture Design" [URL="General_Architecture_Design"];
"Technical Platform" [URL="Technical_Platform_Overview"];
Contracting [URL="Contracting"];
"Strategy & Planning" [URL="Strategy_and_Planning"];
Analysis [URL="Analysis"];
Design [URL="Design"];
Implementation [URL="Implementation"];
Verification [URL="Verification"];
Deployment [URL="Deployment"];
"Product Accept" [URL="Product_Accept"];
"Product Evaluation" [URL="Product_Evaluation"];
"Project Evaluation" [URL="Project_Evaluation"];
"Hardware Development" [URL="Hardware_Development"];
"Human Processes" [URL="Human_Processes"];
"Review Techniques" [URL="Review_Techniques"];
"Verification - common" [URL="Verification_-_common"];
"Risk Management" [URL="Risk_Management"];
"PreProject phase" [URL="PreProject"];
"Launch phase" [URL="The_Launch_Phase"];
"Realisation phase" [URL="Realisation_Phase"];
"PostProject phase" [URL="Post_Project_Phase"];

/* "CommonActivities" [URL="Common_Activities"]; */ }