SWMM5 - Stormwater Management Model

SWMM 5, Watersheds, Water Quality,Hydrology, Hydraulics - Watersheds

+ **Wiki Formatting Guide**
-----------


[[toc]]
++ General Notes

All text is entered as plain text, and will be converted to HTML entities as \
necessary.  This means that {{<}}, {{>}}, {{&}}, and so on are converted for \
you (except in special situations where the characters are Wiki markup; \


Just hit "return" twice to make a paragraph break.  If you want \
to keep the same logical line but have to split it across \
two physical lines (such as when your editor only shows a certain number \
of characters per line), end the line with a backslash {{\}} and hit \
return once.  This will cause the two lines to be joined on display, and the \
backslash will not show.  (If you end a line with a backslash and a tab \
or space, it will ''not'' be joined with the next line, and the backslash \
will be printed.)


----

++ Inline Formatting

|| {{``//emphasis text//``}}                 || //emphasis text// ||
|| {{``**strong text**``}}                   || **strong text** ||
|| {{``//**emphasis and strong**//``}}       || //**emphasis and strong**// ||
|| {{``{{teletype text}}``}}                    || {{teletype text}} ||
|| {{``@@--- delete text +++ insert text @@``}} || @@--- delete text +++ insert text @@ ||
|| {{``@@--- delete only @@``}}                 || @@--- delete only @@ ||
|| {{``@@+++ insert only @@``}}                 || @@+++ insert only @@ ||


----

++ Literal Text

If you don't want Niki to parse some text, enclose it in two backticks (not single-quotes).


<code>
This //text// gets **parsed**.
``This //text// does not get **parsed**.``
</code>

This //text// gets **parsed**.

``This //text// does not get **parsed**.``

----

++ Headings

You can make various levels of heading by putting \
equals-signs before and after the text (all on its \
own line):

<code>
+++ Level 3 Heading
++++ Level 4 Heading
+++++ Level 5 Heading
++++++ Level 6 Heading
</code>

+++ Level 3 Heading
++++ Level 4 Heading
+++++ Level 5 Heading
++++++ Level 6 Heading

----

++ Table of Contents

To create a list of every heading, with a link to that heading, put a table of contents tag on its own line.

<code>
[[toc]]
</code>

----

++ Horizontal Rules

Use four dashes ({{``----``}}) to create a horizontal rule.

----

++ Lists

+++ Bullet Lists

You can create bullet lists by starting a paragraph with one or \
more asterisks.

<code>
* Bullet one
 * Sub-bullet
</code>

* Bullet one
 * Sub-bullet

+++ Numbered Lists

Similarly, you can create numbered lists by starting a paragraph \
with one or more hashes.

<code>
# Numero uno
# Number two
 # Sub-item
</code>

# Numero uno
# Number two
 # Sub-item


+++ Mixing Bullet and Number List Items

You can mix and match bullet and number lists:

<code>
# Number one
 * Bullet
 * Bullet
# Number two
 * Bullet
 * Bullet
  * Sub-bullet
   # Sub-sub-number
   # Sub-sub-number
# Number three
 * Bullet
 * Bullet
</code>

# Number one
 * Bullet
 * Bullet
# Number two
 * Bullet
 * Bullet
  * Sub-bullet
   # Sub-sub-number
   # Sub-sub-number
# Number three
 * Bullet
 * Bullet



+++ Definition Lists

You can create a definition (description) list with the following syntax:

<code>
: Item 1 : Something
: Item 2 : Something else
</code>

: Item 1 : Something
: Item 2 : Something else

----

++ Block Quotes

You can mark a blockquote by starting a line with one or more '>' \
characters, followed by a space and the text to be quoted.


<code>
This is normal text here.

> Indent me! The quick brown fox jumps over the lazy dog. \
Now this the time for all good men to come to the aid of \
their country. Notice how we can continue the block-quote \
in the same "paragraph" by using a backslash at the end of \
the line.
>
> Another block, leading to...
>> Second level of indenting.  This second is indented even \
more than the previous one.

Back to normal text.
</code>


This is normal text here.

> Indent me! The quick brown fox jumps over the lazy dog. \
Now this the time for all good men to come to the aid of \
their country. Notice how we can continue the block-quote \
in the same "paragraph" by using a backslash at the end of \
the line.
>
> Another block, leading to...
>> Second level of indenting.  This second is indented even \
more than the previous one.

Back to normal text.


----

++ Links and Images

+++ Wiki Links

SmashWordsTogether to create a page link.

You can force a WikiPage name '''not''' to be clickable by putting \
an exclamation mark in front of it.

<code>
WikiPage !WikiPage
</code>

WikiPage !WikiPage

You can create a "described" or "labeled" link to a wiki page by putting the page name in brackets, followed by some text.

<code>
[WikiPage Descriptive text for the link.]
</code>

[WikiPage Descriptive text for the link.]

> **Note:** existing wiki pages must be in the [RuleWikilink wikilink] {{pages}} configuration,  and the [RuleWikilink wikilink] {{view_url}} configuration value must be set for the linking to work.


+++ URLs

Create a remote link simply by typing its URL: http://widgetlaboratory.com.

If you like, enclose it in brackets to create a numbered reference \
and avoid cluttering the page; {{``[http://widgetlaboratory.com/]``}} becomes [http://widgetlaboratory.com/].

Or you can have a described-reference instead of a numbered reference:
<code>
[http://widgetlaboratory.com Widget Laboratory]
</code>

[http://widgetlaboratory.com Widget Laboratory]

+++ Images

You can put a picture in a page by typing the URL to the picture \
(it must end in gif, jpg, or png).
<code>
http://widgetlaboratory.ning.com/niki.jpg
</code>

http://widgetlaboratory.ning.com/niki.jpg

You can use the described-reference URL markup to give the image an ALT tag:
<code>
[http://widgetlaboratory.ning.com/niki.jpg Niki]
</code>

[http://widgetlaboratory.ning.com/niki.jpg Niki]

----

++ Tables

You can create tables using pairs of vertical bars:

<code>
|| cell one || cell two ||
|||| big ol' line ||
|| cell four || cell five ||
|| cell six || here's a very long cell ||
</code>

|| cell one || cell two ||
|||| big ol' line ||
|| cell four || cell five ||
|| cell six || here's a very long cell ||

<code>
|| lines must start and end || with double vertical bars || nothing ||
|| cells are separated by || double vertical bars || nothing ||
|||| you can span multiple columns by || starting each cell ||
|| with extra cell |||| separators ||
|||||| but perhaps an example is the easiest way to see ||
</code>

|| lines must start and end || with double vertical bars || nothing ||
|| cells are separated by || double vertical bars || nothing ||
|||| you can span multiple columns by || starting each cell ||
|| with extra cell |||| separators ||
|||||| but perhaps an example is the easiest way to see ||

Last updated by Robert E Dickinson May. 10, 2008.

Latest Activity

The time step used during the simulation at any one time is the minimum of the link and node time steps. As the example shown below shows usually the link time step (based on the CFL) condition is more restrictive than the node time step. In the ima…
on Wednesday
Xiaoyan Huang is now a member of SWMM5 - Stormwater Management Model
July 22
Robert E Dickinson added a blog post
Shanghai Makes MWH Soft’s InfoWorks WS Solution Its Water Distribution Modeling Platform Largest City in World’s Most Populous Country Looks to Advanced MWH Soft Technologyto Improve Drinking Water Operations and Planning Broomfield, Colorado US…
July 14
July 13
Alan is now a member of SWMM5 - Stormwater Management Model
July 13
Robert E Dickinson added a blog post
From a Stanford University Study as described in Science Daily Seasonal records The Stanford team also forecast a dramatic spike in extreme seasonal temperatures during the current decade. Temperatures equaling the hottest season on record from 19…
July 11
July 11
Reza Imani is now a member of SWMM5 - Stormwater Management Model
July 11
Robert E Dickinson added a blog post
New MWH Soft InfoWater V8 Is First Hydraulic Modeling Software for ArcGIS 10 Eighth Generation Shows Company’s Commitment to ArcGIS Platform Broomfield, Colorado USA, July 7, 2010 — MWH Soft, a leading global innovator of wet infrastructure mode…
July 7
Basil Jamison is now a member of SWMM5 - Stormwater Management Model
July 5
Robert E Dickinson added a page
July 4
Robert E Dickinson added a blog post
Routing Time Step Summary
July 3
Robert E Dickinson added a page
July 3
Robert E Dickinson added a blog post
Explicit Iteration Hydraulic Computation and Implicit Time Step Hydraulic Computations in SWMM 5 The dynamic wave solution in SWMM 5 and InfoSWMM uses an interlocking explicit iteration in an overall time step implicit calculation of the node dep…
July 2
A blog post by Robert E Dickinson was featured
MWH Soft Launches Technical Webinar Series Inaugural Eight-Week Series for Wet Infrastructure Utilities and Consultants Begins July 16 Broomfield, Colorado USA, June 30, 2010 — MWH Soft, a leading global innovator of wet infrastructure modeling…
June 30
Robert E Dickinson added a blog post
MWH Soft Launches Technical Webinar Series Inaugural Eight-Week Series for Wet Infrastructure Utilities and Consultants Begins July 16 Broomfield, Colorado USA, June 30, 2010 — MWH Soft, a leading global innovator of wet infrastructure modeling…
June 30
Joaquim Egea i Martinez is now a member of SWMM5 - Stormwater Management Model
June 24
Robert E Dickinson added a blog post
MWH Soft Unveils Highly Anticipated InfoWorks TS for Comprehensive Hydraulic Transient Analysisof Water Distribution Systems Fourth Quarter 2010 Release to Deliver Unprecedented Transient Modeling Capabilities for Better Decision-Making Broomfiel…
June 16
Aren Matta added a discussion
Hello All   I was wondering if any of you have worked on CSO control alternatives as the city i reside is looking for alternatives assessment.   Some of the alternatives we have are :     Satellite Treatment WWTP's (There has to be more than storage…
June 15
Robert E Dickinson added a blog post
The “Hockey Stick” evolution By andyrussellThis is a post that aims to go through the evolution of the “Hockey Stick” from 1990 to the present day. It naturally misses out parts of the story, which deserve far more analysis, simply to keep the post…
June 15

© 2010   Created by Robert E Dickinson.

Badges  |  Report An Issue | SWMM 5 Blog  |  Terms of Service