OOML
Introduction
The Object Oriented Mechanics Library is a set of tools written in C++ that allows you to create mechanical parts for your Openscad projects by taking advantage of recursion, inheritance and the available geometry libraries. OOML applies the model of Object Oriented Programming to Mechanical Designs. Parts can be inherited from others, as well as joined together to create new parts.OOML can work on any computer having a C++ compiler.
Click here for OOM Documentation
OOML is being developed by:
Juan Gonzalez Gómez (Obijuan), Alberto Valero Gómez and Mario Almagro.
Setting OOML up
There are two options for installing OOML on your computer:Install Using the Installer (Linux and Mac OS/X)
Linux Ubuntu/Debian/Mint (.Deb Package)
Download the last version corresponding to your achitecture (amd64 for 64 bits or i386 for 32 bits) of the .deb package.Install the package running the following command on a Terminal
$ sudo dpkg -i ooml-dev_x.xx-x_xxxx.deb
To uninstall the ooml package run:
$ sudo dpkg -r ooml-dev
Linux Fedora/RedHat (.RPM Installer)
Download the last version corresponding to your achitecture (x86-64 for 64 bits or i386 for 32 bits) of the rpm package.Install the package running the following command on a Terminal
$ sudo rpm -ivh ooml-dev-xx-x.xxxx.rpm
To uninstall the ooml package run:
$ sudo rpm -e ooml-dev-xx-x.xxxx.rpm
MAC OS/X (.dmg Installer)
TBDInstall From the Source Code (Linux and Mac OS/X)
- Download CMake, OOML uses CMake as a cross-platform, open-source build system.
When you install it make sure to enable Install For Command Line Use
On Debian/Ubuntu/Mint Linux systems:
$ sudo apt-get install cmake build-essential
- If you don't have Subversion, Download the latest version of OOML, either ooml-xx.xx.tar.gz or ooml-xx.xx.zip, where xx.xx is the version.
- Uncompress this file and move the directory to where you want to keep it. The directory will be called ooml-xx.xx, but change it to ooml
If you do have Subversion:Using Subversion, check-out the the following repository: http://svn.iearobotics.com/oom/tags/current/
If you want to have the daily version check-out this respository: http://svn.iearobotics.com/oom/trunk/
In Terminal in Debian/Ubuntu/Mint Linux and MAC systems:Daily update$ svn checkout http://svn.iearobotics.com/oom/tags/current/ ooml
To update the ooml dir:$ svn checkout http://svn.iearobotics.com/oom/trunk ooml
$ cd ooml $ svn up
-
- Open Terminal.
- Change Directories to your ooml folder:
(On a MAC typecd and then drag the folder into terminal)
$ cd /your_path/ooml - Create a build directory
$ mkdir build
- Go inside the build directory
$ cd build
- Run cmake:
$ cmake ../
- Compile by calling make
$ make
- Now install it:
(you'll need administration privileges)
$ sudo make install
If you prefer to run the GUI version of CMake:- Choose the ooml directory for the location of the source code
- Build the binaries in a build directory inside your ooml directory

- Click on the Generate button.

- After you generate the makefiles, open Terminal and navigate to the build directory.
- Compile with the make command:
$ make
- Now install it:
(you'll need administration privileges)
$ sudo make install
- Open Terminal.
- After OOML is built, make the following checks.
-
In the ooml/lib directory there should be the following files:
- liboomcore.so
- liboompackages.so
- liboomparts.so
- liboomcore.dylib
- liboompackages.dylib
- liboomparts.dylib
The liboomcore library contains all the essentials to design your own objects.The liboomparts library contains the Parts Library and the liboompackages the Packages Library -
In the ooml/bin directory there should be also some applications:
- mario
- alberto
- sphere
- cart
- table
- forest
- cross
- lamppost
- developer-tests
- senoids
- cylinder
- cube
- octahedron
-
In the ooml/lib directory there should be the following files:
Using OOML
You will find tutorials on how to make several shapes at http://iearobotics.com/oomlwiki/doku.php?id=tutorials:startThis OOML Project is just to get you up and running:
- Open a Terminal.
- Create a directory where you want to place your new shape.
$ mkdir ooml_test
- Go inside your new directory:
$ cd ooml_test
- Create a new directory named bin
$ mkdir bin
- Open a Text Editor and create a new document. Save it as CMakeLists.txt in your ooml_test directory.
- Paste the following into your CMakeLists.txt document (don't forget to change the path to point towards your ooml directory:
#Minimum version required for CMake cmake_minimum_required (VERSION 2.6) #Name of the project project (OOML_THINGS) #Compile in Debug Mode. Allows to make debug. SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -ggdb") SET(CMAKE_BUILD_TYPE "debugfull" ) #Set a variable with the directory path. SET(OOM_TRUNK_DIR ${CMAKE_CURRENT_SOURCE_DIR}) #Set a variable with the path of the application. SET(EXECUTABLE_OUTPUT_PATH ${OOM_TRUNK_DIR}/bin) #In Linux and Mac OS/X the Path is /usr/include/ooml INCLUDE_DIRECTORIES("/System/path/to/ooml") #Set a variable with the name of the cpp source files of your application SET(FILE_LIST main.cpp) #Set a variable with the name of your application SET(EXE_NAME Cube) #Create and link the executable ADD_EXECUTABLE(${EXE_NAME} ${FILE_LIST}) TARGET_LINK_LIBRARIES(${EXE_NAME} OOMLCore OOMLComponents OOMLParts) - Create another new document. Name it main.cpp. Also save it in your ooml_test directory
#include <ooml/core.h> #include <ooml/components.h> #include <fstream> #include <iostream> using namespace std; int main() { // Cube of lengths: 10, 20, 30 Component myCube = Cube::create(10,20,30); //translate myCube; myCube.translate(20,35,-5); IndentWriter writer; writer << myCube; ofstream file("cube.scad"); if (file){ //generate OpenSCAD code of the translated cube and save it into file; file << writer; file.close(); }else{ cerr << "Error, cannot open the file" << endl; } cout << "Done" << endl; return 0; }- In terminal type:
$ cmake .
- Then build the file with the make command:
$ make
- Change directories to the bin directory:
$ cd bin
- Run the program:
$ ./Cube
- When it works you will see the message Done in Terminal, and a cube.scad file will appear in your bin directory. You will be able to onen this file with openscad.
- Check out these additional tutorials
New York State Learning Standards
-
STANDARD 1
Analysis, Inquiry, and Design: MATHEMATICAL ANALYSIS
Key Idea 1: details
Abstraction and symbolic representation are used to communicate mathematically.Elementary M1.1 Use special mathematical notation and symbolism to communicate in mathematics and to compare and describe quantities, express relationships, and relate mathematics to their immediate environment. M1.1a Use plus, minus, greater than, less than, equal to, multiplication, and division signs M1.1b Select the appropriate operation to solve mathematical problems M1.1c Apply mathematical skills to describe the natural world
Intermediate M1.1 Extend mathematical notation and symbolism to include variables and algebraic expressions in order to describe and compare quantities and express mathematical relationships. M1.1a Identify independent and dependent variables M1.1b Identify relationships among variables including: direct, indirect, cyclic, constant; identify non-related material M1.1c Apply mathematical equations to describe relationships among variables in the natural world
Physics M1.1 Use algebraic and geometric representations to describe and compare data. √ M1.1a Use scaled diagrams to represent and manipulate vector quantities √ M1.1b Represent physical quantities in graphical form √ M1.1c Construct graphs of real-world data (scatterplots,line or curve of best fit) M1.1d Manipulate equations to solve for unknowns M1.1e Use dimensional analysis to confirm algebraic solutions -
STANDARD 1
Analysis, Inquiry, and Design: MATHEMATICAL ANALYSIS
Key Idea 3: details
Critical thinking skills are used in the solution of mathematical problems.Elementary M3.1 Explore and solve problems generated from school, home, and community situations, using concrete objects or manipulative materials when possible. √ M3.1a Use appropriate scientific tools, such as metric rulers, spring scale, pan balance, graph paper, thermometers [Fahrenheit and Celsius], graduated cylinder to solve problems about the natural world √
Intermediate M3.1 Apply algebraic and geometric concepts and skills to the solution of problems. √ M3.1a Explain the physical relevance of properties of a graphical representation of real-world data, e.g., slope, intercepts, area under the curve
Physics M3.1 Apply mathematical knowledge to solve real-world problems and problems that arise from the investigation of mathematical ideas, using representations such as pictures, charts, and tables. M3.1a Use appropriate scientific tools to solve problems about the natural world √ -
STANDARD 1
Analysis, Inquiry, and Design SCIENTIFIC INQUIRY:
Key Idea 2: details
Beyond the use of reasoning and consensus, scientific inquiry involves the testing of proposed explanations involving the use of conventional techniques and procedures and usually requiring considerable ingenuity.Elementary S2.1 Develop written plans for exploring phenomena or for evaluating explanations guided by questions or proposed explanations they have helped formulate. S2.1a Indicate materials to be used and steps to follow to conduct the investigation and describe how data will be recorded (journal, dates and times, etc.) √ S2.2 Share their research plans with others and revise them based on their suggestions. √ S2.2a Explain the steps of a plan to others, actively listening to their suggestions for possible modification of the plan, seeking clarification and understand- ing of the suggestions and modifying the plan where appropriate √ S2.3 Carry out their plans for exploring phenomena through direct observation and through the use of simple instruments that permit measurement of quantities, such as length, mass, volume, temperature, and time. √ S2.3a Use appropriate "inquiry and process skills" to collect data. √ S2.3b Record observations accurately and concisely √
Intermediate S2.1 Use conventional techniques and those of their own design to make further observations and refine their explanations, guided by a need for more information. √ S2.1a Demonstrate appropriate safety techniques. S2.1b Conduct an experiment designed by others. S2.1c Design and conduct an experiment to test a hypothesis. S2.1d Use appropriate tools and conventional techniques to solve problems about the natural world, including: - measuring
- observing
- describing
- classifying
- sequencing
√ S2.2 Develop, present, and defend formal research proposals for testing their own explanations of common phenomena, including ways of obtaining needed observations and ways of conducting simple controlled experiments S2.2a Include appropriate safety procedures. S2.2b Design scientific investigations (e.g., observing, describing, and comparing; collecting samples; seeking more information, conducting a controlled experiment; discovering new objects or phenomena; making models) S2.2c Design a simple controlled experiment. S2.2d Identify independent variables (manipulated), dependent variables (responding), and constants in a simple controlled experiment. S2.2e Choose appropriate sample size and number of trials. S2.3 Carry out their research proposals, recording observations and measurements (e.g., lab notes, audiotape, computer disk, videotape) to help assess the explanation. √ S2.3a Use appropriate safety procedures. S2.3b Conduct a scientific investigation. S2.3c Collect quantitative and qualitative data. √
Physics S2.1 Devise ways of making observations to test proposed explanations. √ S2.1a Design an experiment to investigate the relationship between physical phenomena. S2.2 Refine research ideas through library investigations, including electronic information retrieval and reviews of the literature, and through peer feedback obtained from review and discussion. S2.3 Develop and present proposals including formal hypotheses to test explanations; i.e., predict what should be observed under specific conditions if the explanation is true. S2.4 Carry out a research plan for testing explanations, including selecting and developing techniques, acquiring and building apparatus, and recording observations as necessary. (Note: This could apply to many activities from simple investigations to long-term projects.) √ -
STANDARD 1
Analysis, Inquiry, and Design: ENGINEERING DESIGN
Key Idea 1: details
Engineering design is an iterative process involving modeling and optimization (finding the best solution within given constraints); this process is used to develop technological solutions to problems within given constraints. (Note: The design process could apply to activities from simple investigations to long-term projects.)Elementary 1.1 Describe objects, imaginary or real, that might be modeled or made differently and suggest ways in which the objects can be changed, fixed, or improved √ 1.2 Investigate prior solutions and ideas from books, magazines, family, friends, neighbors, and community members √ 1.3 Generate ideas for possible solutions, individually and through group activity; apply age-appropriate mathematics and science skills; evaluate the ideas and determine the best solution; and explain reasons for the choices √ 1.4 Plan and build, under supervision, a model of the solution using familiar materials, processes, and hand tools √ 1.5 Discuss how best to test the solution; perform the test under teacher supervision; record and portray results through numerical and graphic means; discuss orally why things worked or didn't work; and summarize results in writing, suggesting ways to make the solution better √
Intermediate T1.1 Identify needs and opportunities for technical solutions from an investigation of situations of general or social interest. T1.1a Identify a scientific or human need that is subject to a technological solution which applies scientific principles √ T1.2 Locate and utilize a range of printed, electronic, and human information resources to obtain ideas. √ T1.2a Use all available information systems for a preliminary search that addresses the need. √ T1.3 Consider constraints and generate several ideas for alternative solutions, using group and individual ideation techniques (group discussion, brainstorming, forced connections, role play); defer judgment until a number of ideas have been generated; evaluate (critique) ideas; and explain why the chosen solution is optimal. √ T1.3a Generate ideas for alternative solutions √ T1.3b Evaluate alternatives based on the constraints of design. √ T1.4 Develop plans, including drawings with measurements and details of construction, and construct a model of the solution, exhibiting a degree of craftsmanship. √ T1.4a Design and construct a model of the product or process √ T1.4b Construct a model of the product or process √ T1.5 In a group setting, test their solution against design specifications, present and evaluate results, describe how the solution might have been modified for different or better results, and discuss trade-offs that might have to be made. √ T1.5a Test a design √ T1.5b Evaluate a design √
Commencement 1.1 Initiate and carry out a thorough investigation of an unfamiliar situation and identify needs and opportunities for technological invention or innovation. 1.2 Identify, locate, and use a wide range of information resources including subject experts, library references, magazines, videotapes, films, electronic data bases and online services, and discuss and document through notes and sketches how findings relate to the problem √ 1.3 Generate creative solution ideas, break ideas into the significant functional elements, and explore possible refinements; predict possible outcomes using mathematical and functional modeling techniques; choose the optimal solution to the problem, clearly documenting ideas against design criteria and constraints; and explain how human values, economics, ergonomics, and environmental considerations have influenced the solution √ 1.4 Develop work schedules and plans which include optimal use and cost of materials, processes, time, and expertise; construct a model of the solution, incorporating developmental modifications while working to a high degree of quality (craftsmanship) √ 1.5 In a group setting, devise a test of the solution relative to the design criteria and perform the test; record, portray, and logically evaluate performance test results through quanitative, graphic, and verbal means; and use a variety of creative verbal and graphic techniques effectively and persuasively to present conclusions, predict impacts and new problems, and suggest and pursue modifications √ -
STANDARD 2
INFORMATION SYSTEMS
Key Idea 1: details
Information technology is used to retrieve, process, and communicate information as a tool to enhance learning.Elementary 1.1 Use computer technology,traditional paper-based resources,and interpersonal discussions to learn, do, and share science in the classroom √ 1.2 Select appropriate hardware and software that aids in word-processing, creating databases, telecommunications, graphing, data display, and other tasks √ 1.3 Use information technology to link the classroom to world events.
Intermediate 1.1 Use a range of equipment and software to integrate several forms of information in order to create good-quality audio, video, graphic, and text-based presentations. √ 1.2 Use spreadsheets and database software to collect, process, display, and analyze information. Students access needed information from electronic databases and on-line telecommunication services. 1.3 Systematically obtain accurate and relevant information pertaining to a particular topic from a range of sources, including local and national media, libraries, muse- ums, governmental agencies, industries, and individuals. √ 1.4 Collect data from probes to measure events and phenomena. 1.4a Collect the data, using the appropriate, available tool. √ 1.4b Organize the data. 1.4c Use the collected data to communicate a scientific concept √ 1.5 Use simple modeling programs to make predictions. √
Physics 1.1 Understand and use the more advanced features of word processing, spreadsheets, and database software. √ 1.2 Prepare multimedia presentations demonstrating a clear sense of audience and purpose. (Note: Multimedia may include posters, slides, images, presentation software, etc.) √ 1.2a Extend knowledge of physical phenomena through independent investigation, e.g., literature review, electronic resources, library research 1.2b Use appropriate technology to gather experimental data, develop models,and present results. √ 1.3 Access, select, collate, and analyze information obtained from a wide range of sources such as research databases, foundations, organizations, national libraries, and electronic communication networks, including the Internet. √ 1.3a Use knowledge of physics to evaluate articles in the popular press on contemporary scientific topics. 1.4 Utilize electronic networks to share information. √ 1.5 Model solutions to a range of problems in mathematics, science, and technology, using computer simulation software. √ 1.5a Use software to model and extend classroom and laboratory experiences,recognizing the differences between the model used for understanding and real-world behavior √ -
STANDARD 2
INFORMATION SYSTEMS:
Key Idea 2: details
Knowledge of the impacts and limitations of information systems is essential to its effective and ethical use.Elementary 2.1 Use a variety of media to access scientific information 2.2 Consult several sources of information and points of view before drawing conclusions √ 2.3 Identify and report sources in oral and written communications √
Intermediate 2.1 Understand the need to question the accuracy of information displayed on a computer because the results produced by a computer may be affected by incorrect data entry. 2.1a Critically analyze data to exclude erroneous information 2.1b Identify and explain sources of error in a data collection 2.2 Understand the need to question the accuracy of information displayed on a computer because the results produced by a computer may be affected by incorrect data entry. 2.2a Critically analyze data to exclude erroneous information 2.2b Identify advantages and limitations of data-handling programs and graphics programs. √ 2.3 Understand why electronically stored personal information has greater potential for misuse than records kept in conventional form.
-
STANDARD 5
Technology: Engineering Design
Key Idea 1:
(See STANDARD 1 Analysis, Inquiry, and Design: ENGINEERING DESIGN)
-
STANDARD 5
Technology: Engineering Design
Key Idea 2: details
Technological tools, materials, and other resources should be selected on the basis of safety, cost, availability, appropriateness, and environmental impact; technological processes change energy, information, and material resources into more useful forms.Elementary 2.1 Explore, use, and process a variety of materials and energy sources to design and construct things. √ 2.2 Understand the importance of safety, cost, ease of use, and availability in selecting tools and resources for a specific purpose. 2.3 Develop basic skill in the use of hand tools 2.4 Use simple manufacturing processes (e.g., assembly, multiple stages of production, quality control) to produce a product √ 2.5 Use appropriate graphic and electronic tools and techniques to process information. √
Intermediate 2.1 Choose and use resources for a particular purpose based upon an analysis and understanding of their properties, costs, availability, and environmental impact √ 2.2 Use a variety of hand tools and machines to change materials into new forms through forming, separating, and combining processes, and processes which cause internal change to occur √ 2.3 Combine manufacturing processes with other technological processes to produce, market, and distribute a product 2.4 Process energy into other forms and information into more meaningful information.
Commencement 2.1 Test, use, and describe the attributes of a range of material (including synthetic and composite materials), information, and energy resources √ 2.2 Select appropriate tools, instruments, and equipment and use them correctly to process materials, energy, and information √ 2.3 Explain tradeoffs made in selecting alternative resources in terms of safety, cost, properties, availability, ease of processing, and disposability 2.4 Describe and model methods (including computer-based methods) to control system processes and monitor system outputs √ -
STANDARD 5
Technology: Computer Technology
Key Idea 3: details
Computers, as tools for design, modeling, information processing, communication, and system control, have greatly increased human productivity and knowledge.Elementary 3.1 Identify and describe the function of the major components of a computer system. 3.2 Use the computer as a tool for generating and drawing ideas. √ 3.3 Control computerized devices and systems through programming. √ 3.4 Model and simulate the design of a complex environment by giving direct commands. √
Intermediate 3.1 Assemble a computer system including keyboard, central processing unit and disc drives, mouse, modem, printer, and monitor 3.2 Use a computer system to connect to and access needed information from various Internet sites √ 3.3 Use computer hardware and software to draw and dimension prototypical designs √ 3.4 Use a computer as a modeling tool √ 3.5 Use a computer system to monitor and control external events and/or systems √
Commencement 3.1 Understand basic computer architecture and describe the function of computer subsystems and peripheral devices 3.2 Select a computer system that meets personal needs 3.3 Attach a modem to a computer system and telephone line, set up and use communications software, connect to various online networks, including the Internet, and access needed information using email, telnet, gopher, ftp, and web searches √ 3.4 Use computer-aided drawing and design (CADD) software to model realistic solutions to design problems √ 3.5 Develop an understanding of computer programming and attain some facility in writing computer programs √ -
STANDARD 6
Interconnectedness: Common Themes MODELS:
Key Idea 2: details
Models are simplified representations of objects, structures, or systems used in analysis, explanation, interpretation, or design.Elementary 2.1 Analyze,construct,and operate models in order to discover attributes of the real thing √ 2.2 Discover that a model of something is different from the real thing but can be used to study the real thing √ 2.3 Use different types of models, such as graphs,sketches,diagrams,and maps,to represent various aspects of the real world
Intermediate 2.1 Select an appropriate model to begin the search for answers or solutions to a question or problem. 2.2 Use models to study processes that cannot be studied directly (e.g., when the real process is too slow, too fast, or too dangerous for direct observation). √ 2.3 Demonstrate the effectiveness of different models to represent the same thing and the same model to represent different things.
Physics 2.1 Revise a model to create a more complete or improved representation of the system. 2.2 Collect information about the behavior of a system and use modeling tools to represent the operation of the system. √ 2.2a Use observations of the behavior of a system to develop a model 2.3 Find and use mathematical models that behave in the same manner as the processes under investigation. 2.3a Represent the behavior of real-world systems,using physical and mathematical models √ 2.4 Compare predictions to actual observations, using test models. √ 2.4a Validate or reject a model based on collated experimental data √ 2.4b Predict the behavior of a system,using a model √ -
STANDARD 7
Interdisciplinary Problem Solving STRATEGIES:
Key Idea 2: details
Solving interdisciplinary problems involves a variety of skills and strategies, including effective work habits; gathering and processing information; generating and analyzing ideas; realizing ideas; making connections among the common themes of mathematics, science, and technology; and presenting results.Physics 2.1 Collect,analyze,interpret,and present data,using appropriate tools √ 2.2 When students participate in an extended,culminating mathematics,science,and technology project, then students should: Work effectively—Contributing to the work of a brainstorming group, laboratory partnership, cooperative learning group, or project team; planning procedures; identify and managing responsibilities of team members; and staying on task, whether working alone or as part of a group. √ Gather and process information —Accessing information from printed media, electronic data bases, and community resources and using the information to develop a definition of the problem and to research possible solutions. √ Generate and analyze ideas — Developing ideas for proposed solutions, investigating ideas, collecting data, and showing relationships and patterns in the data. √ Observe common themes—Observing examples of common unifying themes, applying them to the problem, and using them to better understand the dimensions of the problem. √ Realize ideas—Constructing components or models, arriving at a solution, and evaluating the result. √ Present results—Using a variety of media to present the solution and to communicate the results. √
CDOS
- Standard 2: Integrated Learning details
Students will demonstrate how academic knowledge and skills are applied in the workplace and other settings.
Integrated learning encourages students to use essential academic concepts, facts, and procedures in applications related to life skills and the world of work. This approach allows students to see the usefulness of the concepts that they are being asked to learn and to understand their potential application in the world of work.
Elementary 2.1 Identify academic knowledge and skills that are required in specific occupations 2.2 Demonstrate the difference between the knowledge of a skill and the ability to use the skill 2.3 Solve problems that call for applying academic knowledge and skills. √
Intermediate 2.1 Apply academic knowledge and skills using an interdisciplinary approach to demonstrate the relevance of how these skills are applied in work-related situations in local, state, national, and international communities 2.2 Solve problems that call for applying academic knowledge and skills √ 2.3 Use academic knowledge and skills in an occupational context, and demonstrate the application of these skills by using a variety of communication techniques (e.g., sign language, pictures, videos, reports, and technology).
Commencement 2.1 Demonstrate the integration and application of academic and occupational skills in their school learning, work, and personal lives. √ 2.2 Use academic knowledge and skills in an occupational context, and demonstrate the application of these skills by using a variety of communication techniques (e.g., sign language, pictures, videos, reports, and technology) √ 2.3 Research, interpret, analyze, and evaluate information and experiences as related to academic knowledge and technical skills when completing a career plan. - Standard 3a: Universal Foundation Skills details
Students will demonstrate mastery of the foundation skills and competencies essential for success in the workplace.
- Basic skills
Basic skills include the ability to read, write, listen, and speak as well as perform arithmetical and mathematical functions.
Elementary 3.1.1 Listen to and read the ideas of others and express themselves both orally and in writing; they use basic mathematical concepts and computations to solve problems. √
Intermediate 3.1.1 Listen to and read the ideas of others and analyze what they hear and read; acquire and use information from a variety of sources; and apply a combination of mathematical operations to solve problems in oral or written form. √
Commencement 3.1.1 Use a combination of techniques to read or listen to complex information and analyze what they hear or read; convey information confidently and coherently in written or oral form; and analyze and solve mathematical problems requiring use of multiple computational skills. √ - Thinking skills
Thinking skills lead to problem solving, experimenting, and focused observation and allow the application of knowledge to new and unfamiliar situations.
Elementary 3.2.1 Use ideas and information to make decisions and solve problems related to accomplishing a task. √
Intermediate 3.2.1 Evaluate facts, solve advanced problems, and make decisions by applying logic and reasoning skills. √
Commencement 3.2.1 Demonstrate the ability to organize and process information and apply skills in new ways. √
- Personal Qualities
Personal qualities generally include competence in self-management and the ability to plan, organize, and take independent action.
Elementary 3.3.1 Demonstrate the personal qualities that lead to responsible behavior. √
Intermediate 3.3.1 Demonstrate the ability to work with others, present facts that support arguments, listen to dissenting points of view, and reach a shared decision. √
Commencement 3.3.1 Demonstrate leadership skills in setting goals, monitoring progress, and improving their performance. √
- Interpersonal Skills
Positive interpersonal qualities lead to teamwork and cooperation in large and small groups in family, social, and work situations.
Elementary 3.4.1 Relate to people of different ages and from diverse backgrounds.
Intermediate 3.4.1 Demonstrate the ability to work with others, present facts that support arguments, listen to dissenting points of view, and reach a shared decision. √
Commencement 3.4.1 Communicate effectively and help others to learn a new skill. √
- Technology
Technology is the process and product of human skill and ingenuity in designing and creating things from available resources to satisfy personal and societal needs and wants.
Elementary 3.5.1 Demonstrate an awareness of the different types of technology available to them and of how technology affects society.
Intermediate 3.5.1 Select and use appropriate technology to complete a task. √
Commencement 3.5.1 Apply their knowledge of technology to identify and solve problems. √
- Managing Information
Information management focuses on the ability to access and use information obtained from other people, community resources, and computer networks.Elementary 3.6.1 Describe the need for data and obtain data to make decisions. √
Intermediate 3.6.1 Select and communicate information in an appropriate format (e.g., oral, written, graphic, pictorial, multimedia). √
Commencement 3.6.1 Use technology to acquire, organize, and communicate information by entering, modifying, retrieving, and storing data. √
- Managing Resources
Using resources includes the application of financial and human factors, and the elements of time and materials to successfully carry out a planned activity.Elementary 3.7.1 Demonstrate an awareness of the knowledge, skills, abilities, and resources needed to complete a task. √
Intermediate 3.7.1 Understand the material, human, and financial resources needed to accomplish tasks and activities. √
Commencement 3.7.1 Allocate resources to complete a task. √
- Systems
Systems skills include the understanding of and ability to work within natural and constructed systems.Elementary 3.8.1 Demonstrate understanding of how a system operates and identify where to obtain information and resources within the system. √
Intermediate 3.8.1 Understand the process of evaluating and modifying systems within an organization. √
Commencement 3.8.1 Demonstrate an understanding of how systems performance relates to the goals, resources, and functions of an organization. √
- Basic skills
- Standard 3b: Career Majors
Students who choose a career major will acquire the career-specific technical knowledge/skills necessary to progress toward gainful employment, career advancement, and success in postsecondary programs.

