Exemplo n.º 1
0
    def report_all(cls, output_loc="/tmp/neurtestout/"):
        op = [SectionNewPage(s.title, *s()) for s in ReportGenerator.subclasses]

        d = Document(TableOfContents(), *op)
        op_dir = TestLocations.getTestOutputDir()
        op_loc = Join(op_dir, "everything.pdf")
        d.to_pdf(op_loc)
Exemplo n.º 2
0
def main():
    sections = run_tests()

    doc = Document( *sections )

    opdir = os.path.join( TestLocations.getTestOutputDir(), 'quantity_exprs_valid' )

    doc.to_html(os.path.join(opdir, 'html') )
    doc.to_pdf(os.path.join(opdir, 'all.pdf') )
Exemplo n.º 3
0
    def report_all(cls, output_loc="/tmp/neurtestout/"):
        op = [
            SectionNewPage(s.title, *s()) for s in ReportGenerator.subclasses
        ]

        d = Document(TableOfContents(), *op)
        op_dir = TestLocations.getTestOutputDir()
        op_loc = Join(op_dir, 'everything.pdf')
        d.to_pdf(op_loc)
Exemplo n.º 4
0
def main():
    all_redocs = document_eqnsets(individual_reports = True)
    d = Document( TableOfContents(), *all_redocs)
    op_dir = TestLocations.getTestOutputDir()
    op_loc = os.path.join( op_dir, 'eqnsets', "all.pdf" )
    d.to_pdf(op_loc)
    #HTMLWriter.BuildHTML(d, TestLocations.getTestOutputDir() + '/html/')


    print d
Exemplo n.º 5
0
def document_eqnsets(individual_reports=True):

    all_redocs = []

    for f in TestLocations.getEqnSetFiles():
        f_basename = os.path.splitext( os.path.basename(f))[0]

        # Load the EqnSet:
        library_manager = NeuroUnitParser.File( open(f).read(), name=f_basename )

        # Create the documentation:
        local_redoc = MRedocWriterVisitor.build( library_manager)

        # Create a local documentation file:
        if individual_reports:
            doc = Document(TableOfContents(), local_redoc)
            doc.to_pdf( Join(TestLocations.getTestOutputDir(), 'eqnsets_%s.pdf' %f_basename  ) )

        # Add it to single large file:
        all_redocs.append( local_redoc )

    return all_redocs
Exemplo n.º 6
0
def main():
    sections = run_tests()

    doc = Document(*sections)

    opdir = os.path.join(TestLocations.getTestOutputDir(),
                         'quantity_exprs_valid')

    doc.to_html(os.path.join(opdir, 'html'))
    doc.to_pdf(os.path.join(opdir, 'all.pdf'))
Exemplo n.º 7
0
from mredoc import Document, Section


summary = Document(

    Section("Simulation Results",

    Section(  "Overview",
        Section( "Overview Diagram", ),
        Section("Key Traces", ),
        ),
    Section( "Simulation Setup",
        Section( "Population Overview"),
        Section( "Cells"),
        Section( "Synapses"),
        Section( "Gap Junctions"),
        Section( "Stimulations"),
        Section( "Simulation Junctions"),
        ),
    Section( "Mechanism Dynamics",
        Section( "Channel"),
        Section( "Synapses"),
        ),
    Section( "Platform Details"),
    )
)


summary.to_pdf(filename=os.path.expanduser("~/Desktop/f1.pdf"))
summary.to_html(output_dir=os.path.expanduser("~/Desktop/test_html_out/"))
Exemplo n.º 8
0
summary = Document(
    Section("Trigonometry from Wikipedia",
        Section("Introduction",
            """Much of this content is copied from """, Link("http://en.wikipedia.org/wiki/Trigonometry"),
            """. Trigonometry is a branch of mathematics that studies triangles and the relationships between
            their sides and the angles between these sides. Trigonometry defines the trigonometric functions,
            which describe those relationships and have applicability to cyclical phenomena, such as waves.
            The field evolved during the third century BC as a branch of geometry used extensively for
            astronomical studies. It is also the foundation of the practical art of surveying.""",

        Section("Sin,Cos & Tan",
            Figure(
                Image( resource_filename(__name__, 'TrigonometryTriangle.svg') ), 
                caption="Angles in a triangle",
                reflabel="L1"
                ),
            EquationBlock(
                r""" sin A = \frac{opp}{hyp} = \frac{a}{c}""",
                r""" cos A = \frac{opp}{hyp} = \frac{a}{c}""",
                r""" tan A = \frac{opp}{hyp} = \frac{a}{c}""",
                caption="Relations between angles and lengths of a triangle",
                reflabel="L2"
            ),
            Paragraph("""If one angle of a triangle is 90 degrees and one of the other angles is known, the third is
            thereby fixed, because the three angles of any triangle add up to 180 degrees. The two acute
            angles therefore add up to 90 degrees: they are complementary angles. The shape of a triangle is
            completely determined, except for similarity, by the angles. Once the angles are known, the ratios
            of the sides are determined, regardless of the overall size of the triangle. If the length of one
            of the sides is known, the other two are determined. These ratios are given by the following
            trigonometric functions of the known angle A, where a, b and c refer to the lengths of the sides
            in """, Ref("L1"), "."),
            Section("""Useful identities""",
                Table( [r"$\theta$ (radians)",r"$\theta$ (degs)", r"$sin(\theta)$", r"$cos(\theta)$"],
                      [["0.0",      "0.0",   "0.0",     "1.0"],
                       ["$\pi/4$",  "90.0",  "1.0,",    "0.0"],
                       ["$\pi/2$",  "180.0", "0.0,",    "-1.0"],
                       ["$3\pi/2$", "270.0", "-1.0,",    "0.0"],
                       ["$2\pi$",   "360.0", "0.0,",    "1.0"] ],
                      caption="Some common values",
                      reflabel="Table1",
                      ),
                Paragraph( Ref("Table1"), """ shows some values of sin and
                cos for values of """, InlineEquation(r"""\theta"""), ".")
            ),

            ),

        Section("Investigations In Python",
            """Python is awesome and lets us do lots of clever things!""",
            PythonBlock(code1, reflabel="C1", caption="Python Code Block"),
            Figure( fig , caption="Some heading for the sin figure", reflabel="O4"),
            Paragraph( "We can use ", Ref("C1"), " to produce the graphs, for example, ", Ref("O4"), ".")
            ),

        SectionNewPage("Inverse Functions",
            """There are some other functions that we can also use""",
            List(
                ListItem("arcsin", r"$arcsin(sin(\theta)) = \theta$"),
                ListItem("arccos", r"$arccos(cos(\theta)) = \theta$"),
            ),
            ),
        ),

        Section("Hyperbolic functions",
            r"""In mathematics, hyperbolic functions are analogs of the ordinary trigonometric, or circular,
            functions. The basic hyperbolic functions are the hyperbolic sine "sinh", and the hyperbolic
            cosine "cosh", from which are derived the hyperbolic tangent "tanh", and so on, corresponding to
            the derived trigonometric functions. The inverse hyperbolic functions are the area hyperbolic sine
            "arsinh" (also called "asinh" or sometimes "arcsinh")[2] and so on. Just as the points (cos t, sin
            t) form a circle with a unit radius, the points (cosh t, sinh t) form the right half of the
            equilateral hyperbola. """,
            List(
                Equation(r""" sinh(x) = \frac{e^x-e^{-x}}{2} =\frac{e^{2x}-1}{2e^x}"""),
                Equation(r""" sinh(x) = \frac{e^x-e^{-x}}{2} =\frac{e^{2x}-1}{2e^x}"""),
                "...",
            ),
        )
    )
)