LON-CAPA 2.6.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News LON-CAPA 2.6.1 (Default branch)
# 1  
Old 01-22-2008
LON-CAPA 2.6.1 (Default branch)

Image LON-CAPA (The LearningOnline Network with CAPA) is a learning content and course management system. It offers an underlying shared content pool from which instructors across departmental and institutional boundaries can assemble granular learning content for their courses. It has strong assessment capabilities, both formative (homework and in-class using wireless PDAs) and summative (online and bubblesheet exams), with a one-source multiple-target strategy for the content. It offers students portfolio space in which they can stage materials for submission to projects, and provides a number of tools for synchronous and asynchronous student-student and student-faculty communication. LON-CAPA scales well with number of students, as load-balancing is possible across the whole network of servers at participating institutions. License: GNU General Public License (GPL) Changes:
The students' "Quick Grades" display once again recognizes problems with different point weights. The uploading of clicker grades was fixed. When authoring problems, instructors can once again automatically test them for multiple randomizations. When grading essays, instructors can again immediately compose feedback messages to students. Course descriptions can start with an underscore character.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
LOCAP(3)						 MBK LOGICAL STRUCTURE DEFINITIONS						  LOCAP(3)

NAME
locap - mbk logical capacitor DESCRIPTION
The locap is used to describe a logical capacitor. Please note, this description is different from the RCN description and has a different purpose: the created capacitor is a functional logical capacitor, not a parasitic capacitor. For the time being, only MIM (i.e. metal/metal) and POLY/NWELL capacitors type are supported. The declarations needed to work on locap are available in the header file "/labo/include/mlo.h". The following C structure supports the description of the logical capacitor : typedef struct locap { struct locap *NEXT ; struct locon *TCON ; struct locon *BCON ; char *NAME ; double CAPA ; char TYPE ; struct ptype *USER ; } locap_list ; NEXT Pointer to the next locap of the list. TCON Pointer to the tcon (top plate) connector of the capacitor. This connector is, of course unique. See locon(3) for details. BCON Pointer to the bcon (bottom plate) connector of the capacitor. This connector is, of course unique. See locon(3) for details. NAME Capacitor instance name CAPA Capacitance value TYPE Layer type of the capacitor. Two legal values are available : CAPMIM Metal/metal capacitor. The top plate and the bottom plate are in different metal layers. CAPPNWELL Poly/NWELL capacitor. The top plate layer is POLY, the bottom plate layer is NWELL. Note: this capacitor type is technological dependent and is not available for any technology. USER Pointer to a ptype list, see ptype(3) for details, that is a general purpose pointer used to share informations on the capacitor. This field is used with the LOCAP_INFO(3) ptype to store physical informations. SEE ALSO
mbk(1), addlocap(3), getlocap(3), dellocap(3), setlocap(3), locon(3), lofig(3), ptype(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 August 14, 2002 LOCAP(3)