W.P. Dijkstra
Source: https://repository.tudelft.nl/person/Person_833ba1a9-474c-4c0d-aec9-c47e82c6daa0 Parent: https://repository.tudelft.nl/person/Person_f134911d-deee-49f8-91a9-12c3f0ff211d
document.addEventListener("DOMContentLoaded", function () {
applyColorsToBadge()
});
function applyColorsToBadge() {
/**
* If not photo the person background badges are colorizing according to them name
* (to maintain color constant without necessity of entry in database)
* This script apply the bg colors according.
*/
const elementBadge = document.getElementById("badge-")
const badgeHasImage = elementBadge.children[0]
if (badgeHasImage) {
elementBadge.style.backgroundColor = "transparent"
} else {
const colorId = "WD"
elementBadge.style.backgroundColor = generateColor(colorId);
}
}
const colorPalette = [
"#0076C2", "#009B77", "#E21A1A", "#D4A300",
"#2978A0", "#315659", "#9AB87A",
"#444B6E", "#3D315B", "#7D8CC4",
"#7E5920", "#8E5572", "#C879FF",
];
function generateColor(input) {
/**
* Function to generate a color from input string
*/
// Hash the input to generate a consistent number
let hash = 0;
for (let i = 0; i < input.length; i++) {
hash = input.charCodeAt(i) + ((hash << 5) - hash);
}
// Map the hash to the color palette
const paletteIndex = Math.abs(hash) % colorPalette.length;
const baseColor = colorPalette[paletteIndex];
// Slightly modify the base color to keep it unique
return adjustColor(baseColor, hash);
}
function adjustColor(color, hash) {
/*
* Function to slightly adjust the color within colorPalette range to keep it unique
* We have a color range pallet to maintain colors inside a certain website palette
*/
let r = parseInt(color.substr(1, 2), 16);
let g = parseInt(color.substr(3, 2), 16);
let b = parseInt(color.substr(5, 2), 16);
// Add a slight variation based on the hash
r = (r + (hash & 0x0F)) % 256;
g = (g + ((hash >> 4) & 0x0F)) % 256;
b = (b + ((hash >> 8) & 0x0F)) % 256;
// Ensure color remains within range
return #${('00' + r.toString(16)).substr(-2)}${('00' + g.toString(16)).substr(-2)}${('00' + b.toString(16)).substr(-2)};
}
W.P. Dijkstra
info
Please Note
This page displays the records of the person named above and is not linked to a unique person identifier. This record may need to be merged to a profile.
// Add event listeners to the navigation tabs active based on the url
document.addEventListener('DOMContentLoaded', function () {
setActiveTab();
});
function setActiveTab() {
const path = window.location.pathname;
document.querySelectorAll('.nav-tab-link a').forEach(function (tabLink) {
tabLink.classList.remove("active");
});
const activeTab = getActiveTab(path)
activeTab.classList.add("active");
}
function getActiveTab(path) {
/**
* We first look at the path to see which tab is active (being displayed)
* If the path is not present, the user is in the "root/default" of the page "/person/:person_id".
* Is this case the first one (following the order in tabMapping) who has some quantity of work is the tab
* being displayed (check person_controller.py), thus this one is set active.
*/
const tabMapping = {
academic: 4,
supervised: 0,
editorial: 0,
other: 0
};
// Check path first to set tab as active
for (let key in tabMapping) {
if (path.includes(key)) {
return document.querySelector([data-tab="${key}"]);
}
}
// Fallback to work quantities
for (let key in tabMapping) {
if (tabMapping[key] > 0) {
return document.querySelector([data-tab="${key}"]);
}
}
return null; // default case, if no match
}
Conference paper (2)
Journal article (1)
Report (1)
Sort by descending (newest to oldest)
Sort by ascending (oldest to newest)
4 records found
1
Lessons Learned During COVID
Report (2022) - N.L. Wahls , W.P. Dijkstra , G.M. Ouwehand
This article is a concise analysis of the current COVID situation taking into account the needs of teaching staff and support staff in an emergency situation (IO1) and conditions for change management (IO6) to the design and develop blended education. TU Delft is partner of the E ...
This article is a concise analysis of the current COVID situation taking into account the needs of teaching staff and support staff in an emergency situation (IO1) and conditions for change management (IO6) to the design and develop blended education. TU Delft is partner of the EU project 'Digitel Pro' in collaboration with DCU, KU Leuven, UOC, and EADTU. This is an analysis (a) completing the literature review from 2018 on and (b) refocusing the conclusions on the COVID 19 needs as the Digitel Pro partners have already made a comprehensive analysis for the EMBED project. Best Practices for Blended Learning during COVID times are still emerging. It is unclear if everyone truly uses the same definition for blended and hybrid teaching within the literature produced during COVID times because not all authors provide a definition in their articles. Some of the authors who published in 2020 and 2021 are completely new to online teaching. Although online education has been around since at least 2003, it is surprising to see authors mention that distance learning is still in developmental stages in 2021. Distance learning will continue to develop, however distance learning is well established as an educational mode with various formats such as online, blended, hybrid, and virtual exchange. Perhaps new during COVID times was that all courses had to face distance learning and prior to COVID, some educators could avoid online formats entirely. The original plan pre-COVID for implementing Blended Learning throughout an entire campus was realized in the document: Research report on state of the art in blended learning and innovation (Goeman, Poelmans, & Van Rompaey, 2018), found here: https://embed.eadtu.eu/results. This article expands on that Research report by explaining the COVID scenarios and what emerged as the secondary or emergency plan, as well as best practices noted by instructors for education during rapid changes for COVID restrictions.
expand_more
Development of a maturity model for blended education
A delphi study
Journal article (2021) - Katie Goeman , Wiebe Dijkstra , Stephan Poelmans , Pavani Vemuri , Willem Van Valkenburg
In order to embed blended learning environments in a strategic and sustainable manner, a multi-actor, multidimensional approach is necessary. This paper reports the results of a 3-round Delphi study involving 28 experts which focuses on the refinement and validation of a layered ...
In order to embed blended learning environments in a strategic and sustainable manner, a multi-actor, multidimensional approach is necessary. This paper reports the results of a 3-round Delphi study involving 28 experts which focuses on the refinement and validation of a layered maturity model that assesses key aspects of blended practices in higher education. The study examines the wording of the proposed assumptions, dimensions and indicators, whether they bear validity and if there are others that are not accounted for. We present the findings of each round, the confirmed maturity model and a series of recommendations for its future usage. As such, it is helpful for lecturers, program coordinators, support services or institutional leaders to decide upon follow-up actions and to achieve up-scaled blended programs and courses in higher education institutions.
expand_more
Mathematical competencies and blended education
How to build a resilient course?
Conference paper (2021) - A. J. Cabo , J. Wong , N. J. van der Wal , W. P. Dijkstra , R. G. Klaassen , E. Papageorgiou , L. E. Menschaart
1.1 Background To educate future competent engineers, it is crucial to adopt teaching and learning approaches that support students in dealing with highly complex problems [1]. One strategy is to enhance service mathematics in higher engineering education by shifting from outcome ...
1.1 Background To educate future competent engineers, it is crucial to adopt teaching and learning approaches that support students in dealing with highly complex problems [1]. One strategy is to enhance service mathematics in higher engineering education by shifting from outcome-centered to competence-centered approaches [2]. This strategy is examined and adopted in a large-scale innovation programme of mathematics education (PRIME) at TU Delft to design effective service mathematics courses in higher engineering education. As mathematics is at the core of engineering education, we will, in this workshop, explore how to create a viable and resilient educational model for developing mathematical competencies, described in the Framework of Mathematics Curricula in Engineering Education [2, 3]. Additionally, we will discuss how the development of mathematical competencies can be facilitated by leveraging technology in blended and remote learning environments. The aim of this workshop is to start a process via a living document which serves to share and create material and expertise in teaching, learning and assessing the mathematical competencies.
expand_more
Innovation Mathematics Project, Blended Education in Practice
A Case Study at Delft University of Technology
Conference paper (2017) - Johannetta Gordijn , Wiebe Dijkstra , Ambi Oosterhout
All first-year students at Delft University of Technology (TU Delft) are required to take mathematics courses, but their motivation to participate in these courses is generally lower than their motivation for courses that belong to their main field of study. These lower levels of ...
All first-year students at Delft University of Technology (TU Delft) are required to take mathematics courses, but their motivation to participate in these courses is generally lower than their motivation for courses that belong to their main field of study. These lower levels of commitment often lead to lower results and weaker understanding of mathematical concepts, which in turn affect the rest of their studies. Two years ago, TU Delft introduced blended learning in the first-year interfaculty mathematics courses, in order to improve results, make more efficient use of teaching staff, facilitate the transfer of maths knowledge to other subjects and better connect with today’s students. In this paper we provide an insight into the project, based on student and educator interviews, observations and surveys. Furthermore, we examine the impact of the flipped classroom model used in the project. Our findings suggest that the model could be a promising way of enhancing students’ learning performance. The main results show that students have a more active learning experience, compared to the traditional setup of these courses, leading to more engagement and interaction. Furthermore, the project structure of the flipped maths courses, provides opportunities for more scalable education. Based on our findings we provide recommendations, not just for this project but also for other course teams who are setting up similar projects in order to help them develop a model that best serves their education.
expand_more