give me a tree like structure. where top/root is a node with name "gate". it child is "TC1 (N)". its child is now "TC2 (F)"
Diagram Examples from Real Visitor Prompts
Browse eligible diagrams shared by FreeDiagram visitors, inspect the exact prompts, and build your own version.
Browse 11 real creationsAll visitor creations
Showing 1–11 of 11. No stock examples or system defaults. Choose a tool, study a real result, then reopen its prompt as your starting point.
(A and B) XOR (C or D)
ERD for Training Management System. PK/FK included. Entities: - USERS: UserId(PK), UserName, Email, UserType - COMPANIES: CompanyId(PK), UserId(FK), CompanyName - TRAINERS: TrainerId(PK), UserId(FK), CompanyId(FK), Specialization - TRAINEES: TraineeId(PK), UserId(FK), CompanyId(FK), University, Major - PROGRAMS: ProgramId(PK), CompanyId(FK), TrainerId(FK), Title, Price - SESSIONS: SessionId(PK), ProgramId(FK), SessionDate - ATTENDANCE: AttendanceId(PK), SessionId(FK), TraineeId(FK), Status - ASSIGNMENTS: AssignmentId(PK), ProgramId(FK), Title - SUBMISSIONS: SubmissionId(PK), AssignmentId(FK), TraineeId(FK), Grade - ENROLLMENTS: EnrollmentId(PK), ProgramId(FK), TraineeId(FK) - PAYMENTS: PaymentId(PK), ProgramId(FK), TraineeId(FK), Amount - EVALUATIONS: EvaluationId(PK), ProgramId(FK), TraineeId(FK), TrainerId(FK), Score - CERTIFICATES: CertificateId(PK), ProgramId(FK), TraineeId(FK), TrainerId(FK) - PROJECTS: ProjectId(PK), ProgramId(FK), Title - PROJECT_MEMBERS: MemberId(PK), ProjectId(FK), TraineeId(FK) - MESSAGES: MessageId(PK), SenderId(FK), ReceiverId(FK), Text - NOTIFICATIONS: NotificationId(PK), UserId(FK), Message - FILE_ATTACHMENTS: AttachmentId(PK), UploadedBy(FK), FileName Relations: Users link to companies, trainers, trainees. Programs have sessions, assignments, enrollments, payments, evaluations, certificates, projects. Trainees interact with attendance, submissions, projects, messages.
ERD for Training Management System. PK/FK included. Entities: - USERS: UserId(PK), UserName, Email, UserType - COMPANIES: CompanyId(PK), UserId(FK), CompanyName - TRAINERS: TrainerId(PK), UserId(FK), CompanyId(FK), Specialization - TRAINEES: TraineeId(PK), UserId(FK), CompanyId(FK), University, Major - PROGRAMS: ProgramId(PK), CompanyId(FK), TrainerId(FK), Title, Price - SESSIONS: SessionId(PK), ProgramId(FK), SessionDate - ATTENDANCE: AttendanceId(PK), SessionId(FK), TraineeId(FK), Status - ASSIGNMENTS: AssignmentId(PK), ProgramId(FK), Title - SUBMISSIONS: SubmissionId(PK), AssignmentId(FK), TraineeId(FK), Grade - ENROLLMENTS: EnrollmentId(PK), ProgramId(FK), TraineeId(FK) - PAYMENTS: PaymentId(PK), ProgramId(FK), TraineeId(FK), Amount - EVALUATIONS: EvaluationId(PK), ProgramId(FK), TraineeId(FK), TrainerId(FK), Score - CERTIFICATES: CertificateId(PK), ProgramId(FK), TraineeId(FK), TrainerId(FK) - PROJECTS: ProjectId(PK), ProgramId(FK), Title - PROJECT_MEMBERS: MemberId(PK), ProjectId(FK), TraineeId(FK) - MESSAGES: MessageId(PK), SenderId(FK), ReceiverId(FK), Text - NOTIFICATIONS: NotificationId(PK), UserId(FK), Message - FILE_ATTACHMENTS: AttachmentId(PK), UploadedBy(FK), FileName Relations: Users link to companies, trainers, trainees. Programs have sessions, assignments, enrollments, payments, evaluations, certificates, projects. Trainees interact with attendance, submissions, projects, messages.
ERD for Training Management System. PK/FK included. Entities: - USERS: UserId(PK), UserName, Email, UserType - COMPANIES: CompanyId(PK), UserId(FK), CompanyName - TRAINERS: TrainerId(PK), UserId(FK), CompanyId(FK), Specialization - TRAINEES: TraineeId(PK), UserId(FK), CompanyId(FK), University, Major - PROGRAMS: ProgramId(PK), CompanyId(FK), TrainerId(FK), Title, Price - SESSIONS: SessionId(PK), ProgramId(FK), SessionDate - ATTENDANCE: AttendanceId(PK), SessionId(FK), TraineeId(FK), Status - ASSIGNMENTS: AssignmentId(PK), ProgramId(FK), Title - SUBMISSIONS: SubmissionId(PK), AssignmentId(FK), TraineeId(FK), Grade - ENROLLMENTS: EnrollmentId(PK), ProgramId(FK), TraineeId(FK) - PAYMENTS: PaymentId(PK), ProgramId(FK), TraineeId(FK), Amount - EVALUATIONS: EvaluationId(PK), ProgramId(FK), TraineeId(FK), TrainerId(FK), Score - CERTIFICATES: CertificateId(PK), ProgramId(FK), TraineeId(FK), TrainerId(FK) - PROJECTS: ProjectId(PK), ProgramId(FK), Title - PROJECT_MEMBERS: MemberId(PK), ProjectId(FK), TraineeId(FK) - MESSAGES: MessageId(PK), SenderId(FK), ReceiverId(FK), Text - NOTIFICATIONS: NotificationId(PK), UserId(FK), Message - FILE_ATTACHMENTS: AttachmentId(PK), UploadedBy(FK), FileName Relations: Users link to companies, trainers, trainees. Programs have sessions, assignments, enrollments, payments, evaluations, certificates, projects. Trainees interact with attendance, submissions, projects, messages.
ERD for Training Management System. Show primary keys, foreign keys, and Crow's Foot notation. Entities & Attributes: - Users: UserId(PK), Username, Email, PasswordHash, UserType - Admin: AdminId(PK), UserId(FK) - Trainees: TraineeId(PK), UserId(FK), CompanyId(FK), University, Major, Status - Instructors: InstructorId(PK), UserId(FK), CompanyId(FK), Specialization, Status - HostCompanies: CompanyId(PK), UserId(FK), CompanyName, Address, Phone - Supervisors: SupervisorId(PK), UserId(FK), CompanyId(FK), Department - TrainingPrograms: ProgramId(PK), CompanyId(FK), InstructorId(FK), Title, Status - Courses: CourseId(PK), ProgramId(FK), Title, Duration - Sessions: SessionId(PK), ProgramId(FK), SessionDate, Status - Enrollments: EnrollmentId(PK), ProgramId(FK), TraineeId(FK), Status - Attendance: AttendanceId(PK), SessionId(FK), TraineeId(FK), AttendanceStatus - Evaluations: EvaluationId(PK), ProgramId(FK), TraineeId(FK), Score - Projects: ProjectId(PK), ProgramId(FK), Title, Status - Tasks: TaskId(PK), ProgramId(FK), SupervisorId(FK), Title, DueDate - Certificates: CertificateId(PK), ProgramId(FK), TraineeId(FK), IssueDate - Notifications: NotificationId(PK), UserId(FK), Message, IsRead Relationships: - User has one role. - HostCompany has many Supervisors, Instructors, and Trainees. - TrainingProgram has many Courses and Sessions. - Instructor teaches many Sessions. - Trainee enrolls in many Programs, has attendance, evaluations, and certificates. - Supervisor assigns many Tasks.
Create an ER Diagram for a Training Management System. Entities: User, Admin, Trainee, Instructor, HostCompany, Supervisor, TrainingProgram, Course, Enrollment, Attendance, Evaluation, Project, Task, Certificate, Notification. Relationships: One User has one role. One Company has many Supervisors. One Program has many Courses. One Course has many Sessions. One Instructor teaches many Sessions. One Trainee enrolls in many Programs. One Trainee has many Attendance records. One Supervisor assigns many Tasks. One Trainee receives Evaluations and one Certificate. Show primary keys, foreign keys, and crow's foot notation.
Create an ER Diagram for a Training Academy Management System. Entities: User (UserId, Name, Email, Phone, Role) Trainee (TraineeId, UserId, NationalId) Instructor (InstructorId, UserId, Specialization) TrainingProgram (ProgramId, Name, Duration, Price) Course (CourseId, ProgramId, Name, Hours) Branch (BranchId, Name, City) Classroom (ClassroomId, BranchId, Name, Capacity) Schedule (ScheduleId, CourseId, InstructorId, ClassroomId, StartDate, EndDate) Enrollment (EnrollmentId, TraineeId, ProgramId, EnrollmentDate) Attendance (AttendanceId, EnrollmentId, ScheduleId, Date, Status) Assessment (AssessmentId, CourseId, Title) Certificate (CertificateId, EnrollmentId, IssueDate) Payment (PaymentId, EnrollmentId, Amount, PaymentDate) Relationships: - One User has one Trainee or one Instructor. - One Branch has many Classrooms. - One Training Program has many Courses. - One Course has many Schedules. - One Instructor teaches many Schedules. - One Classroom hosts many Schedules. - One Trainee has many Enrollments. - One Program has many Enrollments. - One Enrollment has many Attendance records. - One Course has many Assessments. - One Enrollment has one Certificate. - One Enrollment has many Payments. Show primary keys, foreign keys, and crow's foot notation.
A P&ID for 14 tanks line to interchange area which consist of two line of export pump 150kwh each, complete with pigging launcher and receiver 8 inch line for each tanks
By pressing the start button: motors M1, M2, and M3 all run together. After 3 seconds: M1 stops and M4 starts. After 3 seconds: M2 stops and M1 starts. After 3 seconds: M3 stops and M2 starts. After 3 seconds: M4 stops and M3 starts. This cycle repeats continuously (a rotation among the 4 motors, with 3 always running at the same time, and every 3 seconds one motor changes). There are three important execution conditions: Without using a comparator instruction. The start button has no effect after the process begins (it is not a stop button). State must be preserved when stopping (resume from the last state when restarted). Implementation is required using a Ladder Diagram.
Crea un diagrama de Ishikawa (espina de pescado / fishbone diagram) en formato horizontal, estilo profesional y limpio, en tonos verdes, azules y grises corporativos. En la cabeza del pez (extremo derecho), coloca el efecto/problema principal en un recuadro destacado: "Deficiente gestión del sistema de almacenamiento en la cadena de suministro del coco: pérdida de trazabilidad, deterioro de producto y cuellos de botella operativos" La espina central debe tener 6 espinas diagonales (3 arriba, 3 abajo), cada una representando una categoría de las 6M, con su lista de causas en texto pequeño junto a cada espina: Espinas superiores: Mano de Obra — Falta de capacitación en manejo de perecederos y FIFO · Ausencia de turnos programados · Alta rotación de personal Métodos — Sin procedimiento estandarizado de codificación FIFO · Sin programación de citas de camiones · Sin protocolo de control de temperatura Maquinaria — Cámaras de refrigeración sin mantenimiento preventivo · Sin sensores de monitoreo en tiempo real · Montacargas insuficientes Espinas inferiores: Materiales — Empaques sin codificación de vencimiento/lote · Pallets no estandarizados · Sin tecnología de trazabilidad (RFID/QR) Medición — Sin KPIs en tiempo real de temperatura y ocupación · Sin indicador de mermas · Sin sistema WMS Medio Ambiente — Altas temperaturas de la Costa Caribe · Almacén sin diseño térmico óptimo · Estacionalidad de cosecha genera picos de llegada Usa íconos pequeños junto a cada categoría (persona para Mano de Obra, engranaje para Métodos, máquina para Maquinaria, caja para Materiales, gráfico para Medición, hoja/termómetro para Medio Ambiente). Incluye un título en la parte superior: "Diagrama de Ishikawa – Cadena de Suministro del Coco" y un pie de página pequeño: "Elaborado por: Mario – UNAD". Estilo: diagrama técnico de análisis causa-efecto, formato horizontal apto para insertar en documento Word o PDF, con espacio suficiente para leer el texto de cada causa.
Focused examples and prompt ideas
Start with the complete visitor wall above, then use these focused collections when you want a narrower subject and more prompt context.
The first curated collection is being prepared.